diff --git a/api/OpenAI.net8.0.cs b/api/OpenAI.net8.0.cs index 9b5e0c62f..eb58847b9 100644 --- a/api/OpenAI.net8.0.cs +++ b/api/OpenAI.net8.0.cs @@ -5066,8 +5066,9 @@ public class CustomMcpToolCallApprovalPolicy : IJsonModel, IPersistableModel { - public FileCitationMessageAnnotation(string fileId, int index); + public FileCitationMessageAnnotation(string fileId, int index, string filename); public string FileId { get; set; } + public string Filename { get; set; } public int Index { get; set; } protected override ResponseMessageAnnotation JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); diff --git a/api/OpenAI.netstandard2.0.cs b/api/OpenAI.netstandard2.0.cs index e9aa597cb..776ad49be 100644 --- a/api/OpenAI.netstandard2.0.cs +++ b/api/OpenAI.netstandard2.0.cs @@ -4425,8 +4425,9 @@ public class CustomMcpToolCallApprovalPolicy : IJsonModel, IPersistableModel { - public FileCitationMessageAnnotation(string fileId, int index); + public FileCitationMessageAnnotation(string fileId, int index, string filename); public string FileId { get; set; } + public string Filename { get; set; } public int Index { get; set; } protected override ResponseMessageAnnotation JsonModelCreateCore(ref Utf8JsonReader reader, ModelReaderWriterOptions options); protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options); diff --git a/specification/base/typespec/responses/models.tsp b/specification/base/typespec/responses/models.tsp index d32b9d6e8..d1406e718 100644 --- a/specification/base/typespec/responses/models.tsp +++ b/specification/base/typespec/responses/models.tsp @@ -1064,6 +1064,9 @@ model AnnotationFileCitation extends Annotation { /** The index of the file in the list of files. */ index: int32; + + /** The filename of the file cited. */ + filename: string; } // Tool customization (apply_discriminator): Apply discriminated base type, rename for consistency and clarity diff --git a/src/Generated/Models/Responses/FileCitationMessageAnnotation.Serialization.cs b/src/Generated/Models/Responses/FileCitationMessageAnnotation.Serialization.cs index a95cfbb58..b3743e0b5 100644 --- a/src/Generated/Models/Responses/FileCitationMessageAnnotation.Serialization.cs +++ b/src/Generated/Models/Responses/FileCitationMessageAnnotation.Serialization.cs @@ -12,7 +12,7 @@ namespace OpenAI.Responses { public partial class FileCitationMessageAnnotation : ResponseMessageAnnotation, IJsonModel { - internal FileCitationMessageAnnotation() : this(ResponseMessageAnnotationKind.FileCitation, default, null, default) + internal FileCitationMessageAnnotation() : this(ResponseMessageAnnotationKind.FileCitation, default, null, default, null) { } @@ -50,6 +50,11 @@ protected override void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWri writer.WritePropertyName("index"u8); writer.WriteNumberValue(Index); } + if (!Patch.Contains("$.filename"u8)) + { + writer.WritePropertyName("filename"u8); + writer.WriteStringValue(Filename); + } Patch.WriteTo(writer); #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. @@ -80,6 +85,7 @@ internal static FileCitationMessageAnnotation DeserializeFileCitationMessageAnno #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. string fileId = default; int index = default; + string filename = default; foreach (var prop in element.EnumerateObject()) { if (prop.NameEquals("type"u8)) @@ -97,9 +103,14 @@ internal static FileCitationMessageAnnotation DeserializeFileCitationMessageAnno index = prop.Value.GetInt32(); continue; } + if (prop.NameEquals("filename"u8)) + { + filename = prop.Value.GetString(); + continue; + } patch.Set([.. "$."u8, .. Encoding.UTF8.GetBytes(prop.Name)], prop.Value.GetUtf8Bytes()); } - return new FileCitationMessageAnnotation(kind, patch, fileId, index); + return new FileCitationMessageAnnotation(kind, patch, fileId, index, filename); } BinaryData IPersistableModel.Write(ModelReaderWriterOptions options) => PersistableModelWriteCore(options); diff --git a/src/Generated/Models/Responses/FileCitationMessageAnnotation.cs b/src/Generated/Models/Responses/FileCitationMessageAnnotation.cs index c86094943..0d3bd5ecb 100644 --- a/src/Generated/Models/Responses/FileCitationMessageAnnotation.cs +++ b/src/Generated/Models/Responses/FileCitationMessageAnnotation.cs @@ -11,24 +11,29 @@ namespace OpenAI.Responses [Experimental("OPENAI001")] public partial class FileCitationMessageAnnotation : ResponseMessageAnnotation { - public FileCitationMessageAnnotation(string fileId, int index) : base(ResponseMessageAnnotationKind.FileCitation) + public FileCitationMessageAnnotation(string fileId, int index, string filename) : base(ResponseMessageAnnotationKind.FileCitation) { Argument.AssertNotNull(fileId, nameof(fileId)); + Argument.AssertNotNull(filename, nameof(filename)); FileId = fileId; Index = index; + Filename = filename; } #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal FileCitationMessageAnnotation(ResponseMessageAnnotationKind kind, in JsonPatch patch, string fileId, int index) : base(kind, patch) + internal FileCitationMessageAnnotation(ResponseMessageAnnotationKind kind, in JsonPatch patch, string fileId, int index, string filename) : base(kind, patch) { FileId = fileId; Index = index; + Filename = filename; } #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. public string FileId { get; set; } public int Index { get; set; } + + public string Filename { get; set; } } } diff --git a/src/Generated/OpenAIModelFactory.cs b/src/Generated/OpenAIModelFactory.cs index 484f8f06f..dd942fb56 100644 --- a/src/Generated/OpenAIModelFactory.cs +++ b/src/Generated/OpenAIModelFactory.cs @@ -584,9 +584,9 @@ public static ResponseMessageAnnotation ResponseMessageAnnotation(string kind = return new InternalUnknownAnnotation(kind.ToResponseMessageAnnotationKind(), default); } - public static FileCitationMessageAnnotation FileCitationMessageAnnotation(string fileId = default, int index = default) + public static FileCitationMessageAnnotation FileCitationMessageAnnotation(string fileId = default, int index = default, string filename = default) { - return new FileCitationMessageAnnotation(ResponseMessageAnnotationKind.FileCitation, default, fileId, index); + return new FileCitationMessageAnnotation(ResponseMessageAnnotationKind.FileCitation, default, fileId, index, filename); } public static UriCitationMessageAnnotation UriCitationMessageAnnotation(Uri uri = default, int startIndex = default, int endIndex = default, string title = default) diff --git a/tests/Responses/ResponsesToolTests.cs b/tests/Responses/ResponsesToolTests.cs index 4a5f5a797..66b37c545 100644 --- a/tests/Responses/ResponsesToolTests.cs +++ b/tests/Responses/ResponsesToolTests.cs @@ -394,6 +394,7 @@ public async Task FileSearch() Assert.That(messageContentPart.OutputTextAnnotations, Is.Not.Null.And.Not.Empty); FileCitationMessageAnnotation annotation = messageContentPart.OutputTextAnnotations[0] as FileCitationMessageAnnotation; Assert.That(annotation.FileId, Is.EqualTo(testFile.Id)); + Assert.That(annotation.Filename, Is.EqualTo(testFile.Filename)); Assert.That(annotation.Index, Is.GreaterThan(0)); await foreach (ResponseItem inputItem in client.GetResponseInputItemsAsync(response.Id)) diff --git a/tests/SessionRecords/ResponsesToolTests/FileSearch.json b/tests/SessionRecords/ResponsesToolTests/FileSearch.json index 84d281ff3..f099e74a8 100644 --- a/tests/SessionRecords/ResponsesToolTests/FileSearch.json +++ b/tests/SessionRecords/ResponsesToolTests/FileSearch.json @@ -7,35 +7,35 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "479", - "Content-Type": "multipart/form-data; boundary=\"iz7QTtLDZAMTEb2SuPO8sFbBQP44WJV4DlVDi5N_L1Scz1=CgcddoPCmmPt0AGmh8tTaCK\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"gZbQKxLKkzWchPKGTNFhHrkUQyUXeHF88Nlk0qfcMoCNnL84vVcWD87ZQcBomuPK3gDHC1\"", + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": [ - "--iz7QTtLDZAMTEb2SuPO8sFbBQP44WJV4DlVDi5N_L1Scz1=CgcddoPCmmPt0AGmh8tTaCK\r\n", + "--gZbQKxLKkzWchPKGTNFhHrkUQyUXeHF88Nlk0qfcMoCNnL84vVcWD87ZQcBomuPK3gDHC1\r\n", "Content-Disposition: form-data; name=file; filename=test_favorite_foods.txt; filename*=utf-8''test_favorite_foods.txt\r\n", "\r\n", "b64:VHJhdmlzJ3MgZmF2b3JpdGUgZm9vZCBpcyBwaXp6YS4=", "\r\n", - "--iz7QTtLDZAMTEb2SuPO8sFbBQP44WJV4DlVDi5N_L1Scz1=CgcddoPCmmPt0AGmh8tTaCK\r\n", + "--gZbQKxLKkzWchPKGTNFhHrkUQyUXeHF88Nlk0qfcMoCNnL84vVcWD87ZQcBomuPK3gDHC1\r\n", "Content-Type: text/plain; charset=utf-8\r\n", "Content-Disposition: form-data; name=purpose\r\n", "\r\n", "user_data", "\r\n", - "--iz7QTtLDZAMTEb2SuPO8sFbBQP44WJV4DlVDi5N_L1Scz1=CgcddoPCmmPt0AGmh8tTaCK--\r\n" + "--gZbQKxLKkzWchPKGTNFhHrkUQyUXeHF88Nlk0qfcMoCNnL84vVcWD87ZQcBomuPK3gDHC1--\r\n" ], "StatusCode": 200, "ResponseHeaders": { "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "983dfe8feb2aa970-SEA", + "CF-RAY": "99a808d2d9070903-SEA", "Connection": "keep-alive", "Content-Length": "245", "Content-Type": "application/json", - "Date": "Tue, 23 Sep 2025 23:59:11 GMT", + "Date": "Thu, 06 Nov 2025 22:30:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "335", + "openai-processing-ms": "459", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", @@ -45,17 +45,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "348", + "x-envoy-upstream-service-time": "465", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-C396DsoSsuq1GcotFhVP4Y", + "id": "file-DRh5qpFvkpc6r7c2E69W2g", "purpose": "user_data", "filename": "test_favorite_foods.txt", "bytes": 32, - "created_at": 1758671951, + "created_at": 1762468217, "expires_at": null, "status": "processed", "status_details": null @@ -69,37 +69,37 @@ "Authorization": "Sanitized", "Content-Length": "44", "Content-Type": "application/json", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "file_ids": [ - "file-C396DsoSsuq1GcotFhVP4Y" + "file-DRh5qpFvkpc6r7c2E69W2g" ] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "983dfe932ce0a970-SEA", + "CF-RAY": "99a808d80d1b0903-SEA", "Connection": "keep-alive", "Content-Length": "406", "Content-Type": "application/json", - "Date": "Tue, 23 Sep 2025 23:59:12 GMT", + "Date": "Thu, 06 Nov 2025 22:30:18 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "342", + "openai-processing-ms": "888", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "346", + "x-envoy-upstream-service-time": "893", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "vs_68d3344ff51481918b99e4ff142bce1d", + "id": "vs_690d2179acdc819188103443c2ec958d", "object": "vector_store", - "created_at": 1758671952, + "created_at": 1762468218, "name": null, "description": null, "usage_bytes": 0, @@ -113,7 +113,7 @@ "status": "in_progress", "expires_after": null, "expires_at": null, - "last_active_at": 1758671952, + "last_active_at": 1762468218, "metadata": {} } }, @@ -125,7 +125,7 @@ "Authorization": "Sanitized", "Content-Length": "260", "Content-Type": "application/json", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "model": "gpt-4o-mini", @@ -133,7 +133,7 @@ { "type": "file_search", "vector_store_ids": [ - "vs_68d3344ff51481918b99e4ff142bce1d" + "vs_690d2179acdc819188103443c2ec958d" ] } ], @@ -154,31 +154,31 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "983dfe961ddda970-SEA", + "CF-RAY": "99a808fe1cae0903-SEA", "Connection": "keep-alive", - "Content-Length": "2224", + "Content-Length": "2200", "Content-Type": "application/json", - "Date": "Tue, 23 Sep 2025 23:59:15 GMT", + "Date": "Thu, 06 Nov 2025 22:30:27 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "3041", + "openai-processing-ms": "3394", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3045", + "x-envoy-upstream-service-time": "3402", "x-ratelimit-limit-requests": "30000", "x-ratelimit-limit-tokens": "150000000", "x-ratelimit-remaining-requests": "29999", - "x-ratelimit-remaining-tokens": "149998815", + "x-ratelimit-remaining-tokens": "149998820", "x-ratelimit-reset-requests": "2ms", "x-ratelimit-reset-tokens": "0s", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "resp_68d33450644081908710fa54e71689a500b5e9a4b8db2cca", + "id": "resp_07295d436a819e7400690d217fc590819382926370a588d98c", "object": "response", - "created_at": 1758671952, + "created_at": 1762468223, "status": "completed", "background": false, "billing": { @@ -192,18 +192,16 @@ "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "fs_68d334513c408190b87e7ef4df3e752400b5e9a4b8db2cca", + "id": "fs_07295d436a819e7400690d2180c95c8193ab7cbe79d087dba0", "type": "file_search_call", "status": "completed", "queries": [ - "What is Travis's favorite food?", - "Travis favorite food", - "favorite food Travis" + "What is Travis's favorite food?" ], "results": null }, { - "id": "msg_68d33452e040819098ab0ff22dc3751800b5e9a4b8db2cca", + "id": "msg_07295d436a819e7400690d21822bfc8193a7d3977d3d47fd38", "type": "message", "status": "completed", "content": [ @@ -212,7 +210,7 @@ "annotations": [ { "type": "file_citation", - "file_id": "file-C396DsoSsuq1GcotFhVP4Y", + "file_id": "file-DRh5qpFvkpc6r7c2E69W2g", "filename": "test_favorite_foods.txt", "index": 31 } @@ -227,6 +225,7 @@ "parallel_tool_calls": true, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -252,7 +251,7 @@ "score_threshold": 0.0 }, "vector_store_ids": [ - "vs_68d3344ff51481918b99e4ff142bce1d" + "vs_690d2179acdc819188103443c2ec958d" ] } ], @@ -260,53 +259,53 @@ "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 1973, + "input_tokens": 1160, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 51, + "output_tokens": 42, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 2024 + "total_tokens": 1202 }, "user": null, "metadata": {} } }, { - "RequestUri": "https://api.openai.com/v1/responses/resp_68d33450644081908710fa54e71689a500b5e9a4b8db2cca/input_items", + "RequestUri": "https://api.openai.com/v1/responses/resp_07295d436a819e7400690d217fc590819382926370a588d98c/input_items", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "983dfeaa195ca970-SEA", + "CF-RAY": "99a8091479b60903-SEA", "Connection": "keep-alive", - "Content-Length": "513", + "Content-Length": "519", "Content-Type": "application/json", - "Date": "Tue, 23 Sep 2025 23:59:15 GMT", + "Date": "Thu, 06 Nov 2025 22:30:27 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "106", + "openai-processing-ms": "156", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110", + "x-envoy-upstream-service-time": "163", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_68d334506b6c819085a5d00c3731ee3600b5e9a4b8db2cca", + "id": "msg_07295d436a819e7400690d217fd1fc819391bc8127016f0dea", "type": "message", "status": "completed", "content": [ @@ -318,9 +317,9 @@ "role": "user" } ], - "first_id": "msg_68d334506b6c819085a5d00c3731ee3600b5e9a4b8db2cca", + "first_id": "msg_07295d436a819e7400690d217fd1fc819391bc8127016f0dea", "has_more": false, - "last_id": "msg_68d334506b6c819085a5d00c3731ee3600b5e9a4b8db2cca" + "last_id": "msg_07295d436a819e7400690d217fd1fc819391bc8127016f0dea" } } ], diff --git a/tests/SessionRecords/ResponsesToolTests/FileSearchAsync.json b/tests/SessionRecords/ResponsesToolTests/FileSearchAsync.json index 358d7bf14..7ab3f8ba3 100644 --- a/tests/SessionRecords/ResponsesToolTests/FileSearchAsync.json +++ b/tests/SessionRecords/ResponsesToolTests/FileSearchAsync.json @@ -7,55 +7,51 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "479", - "Content-Type": "multipart/form-data; boundary=\"RS9NJFdZcw4Ggu6n7YStSwJFCuWFT13GkOf06ZFHu52by1wnZWcQiCyFx54UaRGIo7m7=C\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"dY0WOzS4YV9J8SG=_mYn92VKnVxrzOmdskPCkcR87aag0PLqj5_l0S1xAchDbKwcS6=vVv\"", + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": [ - "--RS9NJFdZcw4Ggu6n7YStSwJFCuWFT13GkOf06ZFHu52by1wnZWcQiCyFx54UaRGIo7m7=C\r\n", + "--dY0WOzS4YV9J8SG=_mYn92VKnVxrzOmdskPCkcR87aag0PLqj5_l0S1xAchDbKwcS6=vVv\r\n", "Content-Disposition: form-data; name=file; filename=test_favorite_foods.txt; filename*=utf-8''test_favorite_foods.txt\r\n", "\r\n", "b64:VHJhdmlzJ3MgZmF2b3JpdGUgZm9vZCBpcyBwaXp6YS4=", "\r\n", - "--RS9NJFdZcw4Ggu6n7YStSwJFCuWFT13GkOf06ZFHu52by1wnZWcQiCyFx54UaRGIo7m7=C\r\n", + "--dY0WOzS4YV9J8SG=_mYn92VKnVxrzOmdskPCkcR87aag0PLqj5_l0S1xAchDbKwcS6=vVv\r\n", "Content-Type: text/plain; charset=utf-8\r\n", "Content-Disposition: form-data; name=purpose\r\n", "\r\n", "user_data", "\r\n", - "--RS9NJFdZcw4Ggu6n7YStSwJFCuWFT13GkOf06ZFHu52by1wnZWcQiCyFx54UaRGIo7m7=C--\r\n" + "--dY0WOzS4YV9J8SG=_mYn92VKnVxrzOmdskPCkcR87aag0PLqj5_l0S1xAchDbKwcS6=vVv--\r\n" ], "StatusCode": 200, "ResponseHeaders": { "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "983e2953a90ea347-SEA", + "CF-RAY": "99a807701b2276d9-SEA", "Connection": "keep-alive", "Content-Length": "245", "Content-Type": "application/json", - "Date": "Wed, 24 Sep 2025 00:28:23 GMT", + "Date": "Thu, 06 Nov 2025 22:29:20 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "565", + "openai-processing-ms": "619", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", - "Set-Cookie": [ - "Sanitized", - "Sanitized" - ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "580", + "x-envoy-upstream-service-time": "633", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-THx6moX3jDmMajXLuMeYac", + "id": "file-3aZuXCPyWQoEBTF11oaanu", "purpose": "user_data", "filename": "test_favorite_foods.txt", "bytes": 32, - "created_at": 1758673703, + "created_at": 1762468160, "expires_at": null, "status": "processed", "status_details": null @@ -69,37 +65,37 @@ "Authorization": "Sanitized", "Content-Length": "44", "Content-Type": "application/json", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "file_ids": [ - "file-THx6moX3jDmMajXLuMeYac" + "file-3aZuXCPyWQoEBTF11oaanu" ] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "983e29589d25a347-SEA", + "CF-RAY": "99a807750fd276d9-SEA", "Connection": "keep-alive", "Content-Length": "406", "Content-Type": "application/json", - "Date": "Wed, 24 Sep 2025 00:28:24 GMT", + "Date": "Thu, 06 Nov 2025 22:29:21 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "470", + "openai-processing-ms": "776", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "473", + "x-envoy-upstream-service-time": "779", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "vs_68d33b27e0cc81919075c0a265629d7b", + "id": "vs_690d2140e05081918dc138fd8851de7e", "object": "vector_store", - "created_at": 1758673704, + "created_at": 1762468161, "name": null, "description": null, "usage_bytes": 0, @@ -113,7 +109,7 @@ "status": "in_progress", "expires_after": null, "expires_at": null, - "last_active_at": 1758673704, + "last_active_at": 1762468161, "metadata": {} } }, @@ -125,7 +121,7 @@ "Authorization": "Sanitized", "Content-Length": "260", "Content-Type": "application/json", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "model": "gpt-4o-mini", @@ -133,7 +129,7 @@ { "type": "file_search", "vector_store_ids": [ - "vs_68d33b27e0cc81919075c0a265629d7b" + "vs_690d2140e05081918dc138fd8851de7e" ] } ], @@ -154,31 +150,31 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "983e295c986fa347-SEA", + "CF-RAY": "99a80799fd9876d9-SEA", "Connection": "keep-alive", - "Content-Length": "2231", + "Content-Length": "2266", "Content-Type": "application/json", - "Date": "Wed, 24 Sep 2025 00:28:28 GMT", + "Date": "Thu, 06 Nov 2025 22:29:30 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "3862", + "openai-processing-ms": "3252", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3867", + "x-envoy-upstream-service-time": "3257", "x-ratelimit-limit-requests": "30000", "x-ratelimit-limit-tokens": "150000000", "x-ratelimit-remaining-requests": "29999", - "x-ratelimit-remaining-tokens": "149998810", + "x-ratelimit-remaining-tokens": "149998815", "x-ratelimit-reset-requests": "2ms", "x-ratelimit-reset-tokens": "0s", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "resp_68d33b287d008195990c7a93ffda15a809652291fd3b24ba", + "id": "resp_045492ed8666420600690d2146c97c8196ac3f158ab26976d6", "object": "response", - "created_at": 1758673704, + "created_at": 1762468166, "status": "completed", "background": false, "billing": { @@ -192,18 +188,18 @@ "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "fs_68d33b294f508195b331c18ded3484d509652291fd3b24ba", + "id": "fs_045492ed8666420600690d2147ca248196b90d68753a614c73", "type": "file_search_call", "status": "completed", "queries": [ "What is Travis's favorite food?", "Travis favorite food", - "What food does Travis like?" + "Travis food preference" ], "results": null }, { - "id": "msg_68d33b2badfc8195a8e0a16b3417334c09652291fd3b24ba", + "id": "msg_045492ed8666420600690d2149609481969e3462b1da8f23eb", "type": "message", "status": "completed", "content": [ @@ -212,7 +208,7 @@ "annotations": [ { "type": "file_citation", - "file_id": "file-THx6moX3jDmMajXLuMeYac", + "file_id": "file-3aZuXCPyWQoEBTF11oaanu", "filename": "test_favorite_foods.txt", "index": 31 } @@ -227,6 +223,7 @@ "parallel_tool_calls": true, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -252,7 +249,7 @@ "score_threshold": 0.0 }, "vector_store_ids": [ - "vs_68d33b27e0cc81919075c0a265629d7b" + "vs_690d2140e05081918dc138fd8851de7e" ] } ], @@ -260,53 +257,53 @@ "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 1978, + "input_tokens": 1167, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 56, + "output_tokens": 52, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 2034 + "total_tokens": 1219 }, "user": null, "metadata": {} } }, { - "RequestUri": "https://api.openai.com/v1/responses/resp_68d33b287d008195990c7a93ffda15a809652291fd3b24ba/input_items", + "RequestUri": "https://api.openai.com/v1/responses/resp_045492ed8666420600690d2146c97c8196ac3f158ab26976d6/input_items", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.6.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "983e2975dec0a347-SEA", + "CF-RAY": "99a807af1a9276d9-SEA", "Connection": "keep-alive", - "Content-Length": "513", + "Content-Length": "519", "Content-Type": "application/json", - "Date": "Wed, 24 Sep 2025 00:28:28 GMT", + "Date": "Thu, 06 Nov 2025 22:29:30 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "147", + "openai-processing-ms": "156", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "151", + "x-envoy-upstream-service-time": "161", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_68d33b288afc81959459a55b17cfcbff09652291fd3b24ba", + "id": "msg_045492ed8666420600690d2146d5308196a7090822c915e498", "type": "message", "status": "completed", "content": [ @@ -318,9 +315,9 @@ "role": "user" } ], - "first_id": "msg_68d33b288afc81959459a55b17cfcbff09652291fd3b24ba", + "first_id": "msg_045492ed8666420600690d2146d5308196a7090822c915e498", "has_more": false, - "last_id": "msg_68d33b288afc81959459a55b17cfcbff09652291fd3b24ba" + "last_id": "msg_045492ed8666420600690d2146d5308196a7090822c915e498" } } ], diff --git a/tspCodeModel.json b/tspCodeModel.json index 9f7bf4359..a79680477 100644 --- a/tspCodeModel.json +++ b/tspCodeModel.json @@ -58689,11 +58689,37 @@ } }, "isHttpMetadata": false + }, + { + "$id": "4771", + "kind": "property", + "name": "filename", + "serializedName": "filename", + "doc": "The filename of the file cited.", + "type": { + "$id": "4772", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.AnnotationFileCitation.filename", + "serializationOptions": { + "json": { + "name": "filename" + } + }, + "isHttpMetadata": false } ] }, "url_citation": { - "$id": "4771", + "$id": "4773", "kind": "model", "name": "AnnotationUrlCitation", "namespace": "OpenAI", @@ -58712,13 +58738,13 @@ }, "properties": [ { - "$id": "4772", + "$id": "4774", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$id": "4773", + "$id": "4775", "kind": "enumvalue", "name": "url_citation", "value": "url_citation", @@ -58744,13 +58770,13 @@ "isHttpMetadata": false }, { - "$id": "4774", + "$id": "4776", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "4775", + "$id": "4777", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -58770,13 +58796,13 @@ "isHttpMetadata": false }, { - "$id": "4776", + "$id": "4778", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "4777", + "$id": "4779", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58796,13 +58822,13 @@ "isHttpMetadata": false }, { - "$id": "4778", + "$id": "4780", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "4779", + "$id": "4781", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58822,13 +58848,13 @@ "isHttpMetadata": false }, { - "$id": "4780", + "$id": "4782", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "4781", + "$id": "4783", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58850,7 +58876,7 @@ ] }, "container_file_citation": { - "$id": "4782", + "$id": "4784", "kind": "model", "name": "ContainerFileCitationBody", "namespace": "OpenAI", @@ -58869,13 +58895,13 @@ }, "properties": [ { - "$id": "4783", + "$id": "4785", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the container file citation. Always `container_file_citation`.", "type": { - "$id": "4784", + "$id": "4786", "kind": "enumvalue", "name": "container_file_citation", "value": "container_file_citation", @@ -58901,13 +58927,13 @@ "isHttpMetadata": false }, { - "$id": "4785", + "$id": "4787", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container file.", "type": { - "$id": "4786", + "$id": "4788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58927,13 +58953,13 @@ "isHttpMetadata": false }, { - "$id": "4787", + "$id": "4789", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4788", + "$id": "4790", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58953,13 +58979,13 @@ "isHttpMetadata": false }, { - "$id": "4789", + "$id": "4791", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the container file citation in the message.", "type": { - "$id": "4790", + "$id": "4792", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58979,13 +59005,13 @@ "isHttpMetadata": false }, { - "$id": "4791", + "$id": "4793", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the container file citation in the message.", "type": { - "$id": "4792", + "$id": "4794", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59005,13 +59031,13 @@ "isHttpMetadata": false }, { - "$id": "4793", + "$id": "4795", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The filename of the container file cited.", "type": { - "$id": "4794", + "$id": "4796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59033,7 +59059,7 @@ ] }, "file_path": { - "$id": "4795", + "$id": "4797", "kind": "model", "name": "AnnotationFilePath", "namespace": "OpenAI", @@ -59052,13 +59078,13 @@ }, "properties": [ { - "$id": "4796", + "$id": "4798", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file path. Always `file_path`.", "type": { - "$id": "4797", + "$id": "4799", "kind": "enumvalue", "name": "file_path", "value": "file_path", @@ -59084,13 +59110,13 @@ "isHttpMetadata": false }, { - "$id": "4798", + "$id": "4800", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4799", + "$id": "4801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59110,13 +59136,13 @@ "isHttpMetadata": false }, { - "$id": "4800", + "$id": "4802", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4801", + "$id": "4803", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59156,16 +59182,16 @@ "isHttpMetadata": false }, { - "$id": "4802", + "$id": "4804", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "4803", + "$id": "4805", "kind": "array", "name": "ArrayLogProb", "valueType": { - "$id": "4804", + "$id": "4806", "kind": "model", "name": "LogProb", "namespace": "OpenAI", @@ -59180,12 +59206,12 @@ ], "properties": [ { - "$id": "4805", + "$id": "4807", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4806", + "$id": "4808", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59205,12 +59231,12 @@ "isHttpMetadata": false }, { - "$id": "4807", + "$id": "4809", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4808", + "$id": "4810", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59230,7 +59256,7 @@ "isHttpMetadata": false }, { - "$id": "4809", + "$id": "4811", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -59251,16 +59277,16 @@ "isHttpMetadata": false }, { - "$id": "4810", + "$id": "4812", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "4811", + "$id": "4813", "kind": "array", "name": "ArrayTopLogProb", "valueType": { - "$id": "4812", + "$id": "4814", "kind": "model", "name": "TopLogProb", "namespace": "OpenAI", @@ -59275,12 +59301,12 @@ ], "properties": [ { - "$id": "4813", + "$id": "4815", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4814", + "$id": "4816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59300,12 +59326,12 @@ "isHttpMetadata": false }, { - "$id": "4815", + "$id": "4817", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4816", + "$id": "4818", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59325,7 +59351,7 @@ "isHttpMetadata": false }, { - "$id": "4817", + "$id": "4819", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -59408,7 +59434,7 @@ ] }, { - "$id": "4818", + "$id": "4820", "kind": "model", "name": "ItemParam", "namespace": "OpenAI", @@ -59422,7 +59448,7 @@ } ], "discriminatorProperty": { - "$id": "4819", + "$id": "4821", "kind": "property", "name": "type", "serializedName": "type", @@ -59444,12 +59470,12 @@ }, "properties": [ { - "$ref": "4819" + "$ref": "4821" } ], "discriminatedSubtypes": { "message": { - "$id": "4820", + "$id": "4822", "kind": "model", "name": "ResponsesMessageItemParam", "namespace": "OpenAI", @@ -59464,7 +59490,7 @@ } ], "discriminatorProperty": { - "$id": "4821", + "$id": "4823", "kind": "property", "name": "role", "serializedName": "role", @@ -59486,17 +59512,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "4822", + "$id": "4824", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$id": "4823", + "$id": "4825", "kind": "enumvalue", "name": "message", "value": "message", @@ -59504,14 +59530,14 @@ "$ref": "618" }, "enumType": { - "$id": "4824", + "$id": "4826", "kind": "enum", "decorators": [], "name": "ItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4825", + "$id": "4827", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -59520,224 +59546,224 @@ }, "values": [ { - "$id": "4826", + "$id": "4828", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4827", + "$id": "4829", "kind": "enumvalue", "decorators": [], "name": "file_search_call", "value": "file_search_call", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4828", + "$id": "4830", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4829", + "$id": "4831", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4830", + "$id": "4832", "kind": "enumvalue", "decorators": [], "name": "computer_call", "value": "computer_call", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4831", + "$id": "4833", "kind": "enumvalue", "decorators": [], "name": "computer_call_output", "value": "computer_call_output", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4832", + "$id": "4834", "kind": "enumvalue", "decorators": [], "name": "web_search_call", "value": "web_search_call", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4833", + "$id": "4835", "kind": "enumvalue", "decorators": [], "name": "reasoning", "value": "reasoning", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4834", + "$id": "4836", "kind": "enumvalue", "decorators": [], "name": "item_reference", "value": "item_reference", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4835", + "$id": "4837", "kind": "enumvalue", "decorators": [], "name": "image_generation_call", "value": "image_generation_call", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4836", + "$id": "4838", "kind": "enumvalue", "decorators": [], "name": "code_interpreter_call", "value": "code_interpreter_call", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4837", + "$id": "4839", "kind": "enumvalue", "decorators": [], "name": "local_shell_call", "value": "local_shell_call", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4838", + "$id": "4840", "kind": "enumvalue", "decorators": [], "name": "local_shell_call_output", "value": "local_shell_call_output", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4839", + "$id": "4841", "kind": "enumvalue", "decorators": [], "name": "mcp_list_tools", "value": "mcp_list_tools", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4840", + "$id": "4842", "kind": "enumvalue", "decorators": [], "name": "mcp_approval_request", "value": "mcp_approval_request", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4841", + "$id": "4843", "kind": "enumvalue", "decorators": [], "name": "mcp_approval_response", "value": "mcp_approval_response", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } }, { - "$id": "4842", + "$id": "4844", "kind": "enumvalue", "decorators": [], "name": "mcp_call", "value": "mcp_call", "valueType": { - "$ref": "4825" + "$ref": "4827" }, "enumType": { - "$ref": "4824" + "$ref": "4826" } } ], @@ -59766,12 +59792,12 @@ "isHttpMetadata": false }, { - "$ref": "4821" + "$ref": "4823" } ], "discriminatedSubtypes": { "user": { - "$id": "4843", + "$id": "4845", "kind": "model", "name": "ResponsesUserMessageItemParam", "namespace": "OpenAI", @@ -59786,17 +59812,17 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4822" }, "properties": [ { - "$id": "4844", + "$id": "4846", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$id": "4845", + "$id": "4847", "kind": "enumvalue", "name": "user", "value": "user", @@ -59804,7 +59830,7 @@ "$ref": "637" }, "enumType": { - "$id": "4846", + "$id": "4848", "kind": "enum", "decorators": [], "doc": "The collection of valid roles for responses message items.", @@ -59812,7 +59838,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4847", + "$id": "4849", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -59821,55 +59847,55 @@ }, "values": [ { - "$id": "4848", + "$id": "4850", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "4847" + "$ref": "4849" }, "enumType": { - "$ref": "4846" + "$ref": "4848" } }, { - "$id": "4849", + "$id": "4851", "kind": "enumvalue", "decorators": [], "name": "developer", "value": "developer", "valueType": { - "$ref": "4847" + "$ref": "4849" }, "enumType": { - "$ref": "4846" + "$ref": "4848" } }, { - "$id": "4850", + "$id": "4852", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "4847" + "$ref": "4849" }, "enumType": { - "$ref": "4846" + "$ref": "4848" } }, { - "$id": "4851", + "$id": "4853", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "4847" + "$ref": "4849" }, "enumType": { - "$ref": "4846" + "$ref": "4848" } } ], @@ -59898,7 +59924,7 @@ "isHttpMetadata": false }, { - "$id": "4852", + "$id": "4854", "kind": "property", "name": "content", "serializedName": "content", @@ -59922,7 +59948,7 @@ ] }, "system": { - "$id": "4853", + "$id": "4855", "kind": "model", "name": "ResponsesSystemMessageItemParam", "namespace": "OpenAI", @@ -59937,17 +59963,17 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4822" }, "properties": [ { - "$id": "4854", + "$id": "4856", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$id": "4855", + "$id": "4857", "kind": "enumvalue", "name": "system", "value": "system", @@ -59955,7 +59981,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4846" + "$ref": "4848" }, "decorators": [] }, @@ -59973,7 +59999,7 @@ "isHttpMetadata": false }, { - "$id": "4856", + "$id": "4858", "kind": "property", "name": "content", "serializedName": "content", @@ -59997,7 +60023,7 @@ ] }, "developer": { - "$id": "4857", + "$id": "4859", "kind": "model", "name": "ResponsesDeveloperMessageItemParam", "namespace": "OpenAI", @@ -60012,17 +60038,17 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4822" }, "properties": [ { - "$id": "4858", + "$id": "4860", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$id": "4859", + "$id": "4861", "kind": "enumvalue", "name": "developer", "value": "developer", @@ -60030,7 +60056,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4846" + "$ref": "4848" }, "decorators": [] }, @@ -60048,7 +60074,7 @@ "isHttpMetadata": false }, { - "$id": "4860", + "$id": "4862", "kind": "property", "name": "content", "serializedName": "content", @@ -60072,7 +60098,7 @@ ] }, "assistant": { - "$id": "4861", + "$id": "4863", "kind": "model", "name": "ResponsesAssistantMessageItemParam", "namespace": "OpenAI", @@ -60087,17 +60113,17 @@ } ], "baseModel": { - "$ref": "4820" + "$ref": "4822" }, "properties": [ { - "$id": "4862", + "$id": "4864", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$id": "4863", + "$id": "4865", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -60105,7 +60131,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4846" + "$ref": "4848" }, "decorators": [] }, @@ -60123,7 +60149,7 @@ "isHttpMetadata": false }, { - "$id": "4864", + "$id": "4866", "kind": "property", "name": "content", "serializedName": "content", @@ -60149,7 +60175,7 @@ } }, "function_call_output": { - "$id": "4865", + "$id": "4867", "kind": "model", "name": "FunctionToolCallOutputItemParam", "namespace": "OpenAI", @@ -60164,16 +60190,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "4866", + "$id": "4868", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4867", + "$id": "4869", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", @@ -60181,7 +60207,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -60199,13 +60225,13 @@ "isHttpMetadata": false }, { - "$id": "4868", + "$id": "4870", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4869", + "$id": "4871", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60225,13 +60251,13 @@ "isHttpMetadata": false }, { - "$id": "4870", + "$id": "4872", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "4871", + "$id": "4873", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60253,7 +60279,7 @@ ] }, "file_search_call": { - "$id": "4872", + "$id": "4874", "kind": "model", "name": "FileSearchToolCallItemParam", "namespace": "OpenAI", @@ -60268,16 +60294,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "4873", + "$id": "4875", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4874", + "$id": "4876", "kind": "enumvalue", "name": "file_search_call", "value": "file_search_call", @@ -60285,7 +60311,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -60303,7 +60329,7 @@ "isHttpMetadata": false }, { - "$id": "4875", + "$id": "4877", "kind": "property", "name": "queries", "serializedName": "queries", @@ -60325,20 +60351,20 @@ "isHttpMetadata": false }, { - "$id": "4876", + "$id": "4878", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$id": "4877", + "$id": "4879", "kind": "nullable", "type": { - "$id": "4878", + "$id": "4880", "kind": "array", "name": "Array24", "valueType": { - "$id": "4879", + "$id": "4881", "kind": "model", "name": "FileSearchToolCallItemResourceResult", "namespace": "OpenAI", @@ -60347,13 +60373,13 @@ "decorators": [], "properties": [ { - "$id": "4880", + "$id": "4882", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The unique ID of the file.", "type": { - "$id": "4881", + "$id": "4883", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60373,13 +60399,13 @@ "isHttpMetadata": false }, { - "$id": "4882", + "$id": "4884", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text that was retrieved from the file.", "type": { - "$id": "4883", + "$id": "4885", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60399,13 +60425,13 @@ "isHttpMetadata": false }, { - "$id": "4884", + "$id": "4886", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "4885", + "$id": "4887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60425,7 +60451,7 @@ "isHttpMetadata": false }, { - "$id": "4886", + "$id": "4888", "kind": "property", "name": "attributes", "serializedName": "attributes", @@ -60446,13 +60472,13 @@ "isHttpMetadata": false }, { - "$id": "4887", + "$id": "4889", "kind": "property", "name": "score", "serializedName": "score", "doc": "The relevance score of the file - a value between 0 and 1.", "type": { - "$id": "4888", + "$id": "4890", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -60494,7 +60520,7 @@ ] }, "computer_call": { - "$id": "4889", + "$id": "4891", "kind": "model", "name": "ComputerToolCallItemParam", "namespace": "OpenAI", @@ -60509,16 +60535,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "4890", + "$id": "4892", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4891", + "$id": "4893", "kind": "enumvalue", "name": "computer_call", "value": "computer_call", @@ -60526,7 +60552,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -60544,13 +60570,13 @@ "isHttpMetadata": false }, { - "$id": "4892", + "$id": "4894", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "4893", + "$id": "4895", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60570,12 +60596,12 @@ "isHttpMetadata": false }, { - "$id": "4894", + "$id": "4896", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4895", + "$id": "4897", "kind": "model", "name": "ComputerAction", "namespace": "OpenAI", @@ -60588,7 +60614,7 @@ } ], "discriminatorProperty": { - "$id": "4896", + "$id": "4898", "kind": "property", "name": "type", "serializedName": "type", @@ -60610,12 +60636,12 @@ }, "properties": [ { - "$ref": "4896" + "$ref": "4898" } ], "discriminatedSubtypes": { "click": { - "$id": "4897", + "$id": "4899", "kind": "model", "name": "ComputerActionClick", "namespace": "OpenAI", @@ -60630,17 +60656,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4898", + "$id": "4900", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a click action, this property is\nalways set to `click`.", "type": { - "$id": "4899", + "$id": "4901", "kind": "enumvalue", "name": "click", "value": "click", @@ -60648,14 +60674,14 @@ "$ref": "643" }, "enumType": { - "$id": "4900", + "$id": "4902", "kind": "enum", "decorators": [], "name": "ComputerActionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4901", + "$id": "4903", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -60664,120 +60690,120 @@ }, "values": [ { - "$id": "4902", + "$id": "4904", "kind": "enumvalue", "decorators": [], "name": "screenshot", "value": "screenshot", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } }, { - "$id": "4903", + "$id": "4905", "kind": "enumvalue", "decorators": [], "name": "click", "value": "click", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } }, { - "$id": "4904", + "$id": "4906", "kind": "enumvalue", "decorators": [], "name": "double_click", "value": "double_click", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } }, { - "$id": "4905", + "$id": "4907", "kind": "enumvalue", "decorators": [], "name": "scroll", "value": "scroll", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } }, { - "$id": "4906", + "$id": "4908", "kind": "enumvalue", "decorators": [], "name": "type", "value": "type", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } }, { - "$id": "4907", + "$id": "4909", "kind": "enumvalue", "decorators": [], "name": "wait", "value": "wait", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } }, { - "$id": "4908", + "$id": "4910", "kind": "enumvalue", "decorators": [], "name": "keypress", "value": "keypress", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } }, { - "$id": "4909", + "$id": "4911", "kind": "enumvalue", "decorators": [], "name": "drag", "value": "drag", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } }, { - "$id": "4910", + "$id": "4912", "kind": "enumvalue", "decorators": [], "name": "move", "value": "move", "valueType": { - "$ref": "4901" + "$ref": "4903" }, "enumType": { - "$ref": "4900" + "$ref": "4902" } } ], @@ -60806,7 +60832,7 @@ "isHttpMetadata": false }, { - "$id": "4911", + "$id": "4913", "kind": "property", "name": "button", "serializedName": "button", @@ -60828,13 +60854,13 @@ "isHttpMetadata": false }, { - "$id": "4912", + "$id": "4914", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the click occurred.", "type": { - "$id": "4913", + "$id": "4915", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60854,13 +60880,13 @@ "isHttpMetadata": false }, { - "$id": "4914", + "$id": "4916", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the click occurred.", "type": { - "$id": "4915", + "$id": "4917", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60882,7 +60908,7 @@ ] }, "double_click": { - "$id": "4916", + "$id": "4918", "kind": "model", "name": "ComputerActionDoubleClick", "namespace": "OpenAI", @@ -60897,17 +60923,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4917", + "$id": "4919", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a double click action, this property is\nalways set to `double_click`.", "type": { - "$id": "4918", + "$id": "4920", "kind": "enumvalue", "name": "double_click", "value": "double_click", @@ -60915,7 +60941,7 @@ "$ref": "643" }, "enumType": { - "$ref": "4900" + "$ref": "4902" }, "decorators": [] }, @@ -60933,13 +60959,13 @@ "isHttpMetadata": false }, { - "$id": "4919", + "$id": "4921", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the double click occurred.", "type": { - "$id": "4920", + "$id": "4922", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60959,13 +60985,13 @@ "isHttpMetadata": false }, { - "$id": "4921", + "$id": "4923", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the double click occurred.", "type": { - "$id": "4922", + "$id": "4924", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60987,7 +61013,7 @@ ] }, "drag": { - "$id": "4923", + "$id": "4925", "kind": "model", "name": "ComputerActionDrag", "namespace": "OpenAI", @@ -61002,17 +61028,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4924", + "$id": "4926", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a drag action, this property is\nalways set to `drag`.", "type": { - "$id": "4925", + "$id": "4927", "kind": "enumvalue", "name": "drag", "value": "drag", @@ -61020,7 +61046,7 @@ "$ref": "643" }, "enumType": { - "$ref": "4900" + "$ref": "4902" }, "decorators": [] }, @@ -61038,17 +61064,17 @@ "isHttpMetadata": false }, { - "$id": "4926", + "$id": "4928", "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": "4927", + "$id": "4929", "kind": "array", "name": "ArrayCoordinate", "valueType": { - "$id": "4928", + "$id": "4930", "kind": "model", "name": "Coordinate", "namespace": "OpenAI", @@ -61063,13 +61089,13 @@ ], "properties": [ { - "$id": "4929", + "$id": "4931", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate.", "type": { - "$id": "4930", + "$id": "4932", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61089,13 +61115,13 @@ "isHttpMetadata": false }, { - "$id": "4931", + "$id": "4933", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate.", "type": { - "$id": "4932", + "$id": "4934", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61135,7 +61161,7 @@ ] }, "move": { - "$id": "4933", + "$id": "4935", "kind": "model", "name": "ComputerActionMove", "namespace": "OpenAI", @@ -61150,17 +61176,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4934", + "$id": "4936", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a move action, this property is\nalways set to `move`.", "type": { - "$id": "4935", + "$id": "4937", "kind": "enumvalue", "name": "move", "value": "move", @@ -61168,7 +61194,7 @@ "$ref": "643" }, "enumType": { - "$ref": "4900" + "$ref": "4902" }, "decorators": [] }, @@ -61186,13 +61212,13 @@ "isHttpMetadata": false }, { - "$id": "4936", + "$id": "4938", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate to move to.", "type": { - "$id": "4937", + "$id": "4939", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61212,13 +61238,13 @@ "isHttpMetadata": false }, { - "$id": "4938", + "$id": "4940", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate to move to.", "type": { - "$id": "4939", + "$id": "4941", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61240,7 +61266,7 @@ ] }, "screenshot": { - "$id": "4940", + "$id": "4942", "kind": "model", "name": "ComputerActionScreenshot", "namespace": "OpenAI", @@ -61255,17 +61281,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4941", + "$id": "4943", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a screenshot action, this property is\nalways set to `screenshot`.", "type": { - "$id": "4942", + "$id": "4944", "kind": "enumvalue", "name": "screenshot", "value": "screenshot", @@ -61273,7 +61299,7 @@ "$ref": "643" }, "enumType": { - "$ref": "4900" + "$ref": "4902" }, "decorators": [] }, @@ -61293,7 +61319,7 @@ ] }, "scroll": { - "$id": "4943", + "$id": "4945", "kind": "model", "name": "ComputerActionScroll", "namespace": "OpenAI", @@ -61308,17 +61334,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4944", + "$id": "4946", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a scroll action, this property is\nalways set to `scroll`.", "type": { - "$id": "4945", + "$id": "4947", "kind": "enumvalue", "name": "scroll", "value": "scroll", @@ -61326,7 +61352,7 @@ "$ref": "643" }, "enumType": { - "$ref": "4900" + "$ref": "4902" }, "decorators": [] }, @@ -61344,13 +61370,13 @@ "isHttpMetadata": false }, { - "$id": "4946", + "$id": "4948", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the scroll occurred.", "type": { - "$id": "4947", + "$id": "4949", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61370,13 +61396,13 @@ "isHttpMetadata": false }, { - "$id": "4948", + "$id": "4950", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the scroll occurred.", "type": { - "$id": "4949", + "$id": "4951", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61396,13 +61422,13 @@ "isHttpMetadata": false }, { - "$id": "4950", + "$id": "4952", "kind": "property", "name": "scroll_x", "serializedName": "scroll_x", "doc": "The horizontal scroll distance.", "type": { - "$id": "4951", + "$id": "4953", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61422,13 +61448,13 @@ "isHttpMetadata": false }, { - "$id": "4952", + "$id": "4954", "kind": "property", "name": "scroll_y", "serializedName": "scroll_y", "doc": "The vertical scroll distance.", "type": { - "$id": "4953", + "$id": "4955", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61450,7 +61476,7 @@ ] }, "type": { - "$id": "4954", + "$id": "4956", "kind": "model", "name": "ComputerActionTypeKeys", "namespace": "OpenAI", @@ -61465,17 +61491,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4955", + "$id": "4957", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a type action, this property is\nalways set to `type`.", "type": { - "$id": "4956", + "$id": "4958", "kind": "enumvalue", "name": "type", "value": "type", @@ -61483,7 +61509,7 @@ "$ref": "643" }, "enumType": { - "$ref": "4900" + "$ref": "4902" }, "decorators": [] }, @@ -61501,13 +61527,13 @@ "isHttpMetadata": false }, { - "$id": "4957", + "$id": "4959", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text to type.", "type": { - "$id": "4958", + "$id": "4960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61529,7 +61555,7 @@ ] }, "wait": { - "$id": "4959", + "$id": "4961", "kind": "model", "name": "ComputerActionWait", "namespace": "OpenAI", @@ -61544,17 +61570,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4960", + "$id": "4962", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a wait action, this property is\nalways set to `wait`.", "type": { - "$id": "4961", + "$id": "4963", "kind": "enumvalue", "name": "wait", "value": "wait", @@ -61562,7 +61588,7 @@ "$ref": "643" }, "enumType": { - "$ref": "4900" + "$ref": "4902" }, "decorators": [] }, @@ -61582,7 +61608,7 @@ ] }, "keypress": { - "$id": "4962", + "$id": "4964", "kind": "model", "name": "ComputerActionKeyPress", "namespace": "OpenAI", @@ -61597,17 +61623,17 @@ } ], "baseModel": { - "$ref": "4895" + "$ref": "4897" }, "properties": [ { - "$id": "4963", + "$id": "4965", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a keypress action, this property is\nalways set to `keypress`.", "type": { - "$id": "4964", + "$id": "4966", "kind": "enumvalue", "name": "keypress", "value": "keypress", @@ -61615,7 +61641,7 @@ "$ref": "643" }, "enumType": { - "$ref": "4900" + "$ref": "4902" }, "decorators": [] }, @@ -61633,7 +61659,7 @@ "isHttpMetadata": false }, { - "$id": "4965", + "$id": "4967", "kind": "property", "name": "keys", "serializedName": "keys", @@ -61672,17 +61698,17 @@ "isHttpMetadata": false }, { - "$id": "4966", + "$id": "4968", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$id": "4967", + "$id": "4969", "kind": "array", "name": "ArrayComputerToolCallSafetyCheck", "valueType": { - "$id": "4968", + "$id": "4970", "kind": "model", "name": "ComputerToolCallSafetyCheck", "namespace": "OpenAI", @@ -61697,13 +61723,13 @@ ], "properties": [ { - "$id": "4969", + "$id": "4971", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the pending safety check.", "type": { - "$id": "4970", + "$id": "4972", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61723,13 +61749,13 @@ "isHttpMetadata": false }, { - "$id": "4971", + "$id": "4973", "kind": "property", "name": "code", "serializedName": "code", "doc": "The type of the pending safety check.", "type": { - "$id": "4972", + "$id": "4974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61749,13 +61775,13 @@ "isHttpMetadata": false }, { - "$id": "4973", + "$id": "4975", "kind": "property", "name": "message", "serializedName": "message", "doc": "Details about the pending safety check.", "type": { - "$id": "4974", + "$id": "4976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61795,7 +61821,7 @@ ] }, "computer_call_output": { - "$id": "4975", + "$id": "4977", "kind": "model", "name": "ComputerToolCallOutputItemParam", "namespace": "OpenAI", @@ -61810,16 +61836,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "4976", + "$id": "4978", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4977", + "$id": "4979", "kind": "enumvalue", "name": "computer_call_output", "value": "computer_call_output", @@ -61827,7 +61853,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -61845,13 +61871,13 @@ "isHttpMetadata": false }, { - "$id": "4978", + "$id": "4980", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "4979", + "$id": "4981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61871,13 +61897,13 @@ "isHttpMetadata": false }, { - "$id": "4980", + "$id": "4982", "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": "4967" + "$ref": "4969" }, "optional": true, "readOnly": false, @@ -61893,12 +61919,12 @@ "isHttpMetadata": false }, { - "$id": "4981", + "$id": "4983", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "4982", + "$id": "4984", "kind": "model", "name": "ComputerToolCallOutputItemOutput", "namespace": "OpenAI", @@ -61911,7 +61937,7 @@ } ], "discriminatorProperty": { - "$id": "4983", + "$id": "4985", "kind": "property", "name": "type", "serializedName": "type", @@ -61933,12 +61959,12 @@ }, "properties": [ { - "$ref": "4983" + "$ref": "4985" } ], "discriminatedSubtypes": { "computer_screenshot": { - "$id": "4984", + "$id": "4986", "kind": "model", "name": "ComputerToolCallOutputItemOutputComputerScreenshot", "namespace": "OpenAI", @@ -61952,16 +61978,16 @@ } ], "baseModel": { - "$ref": "4982" + "$ref": "4984" }, "properties": [ { - "$id": "4985", + "$id": "4987", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4986", + "$id": "4988", "kind": "enumvalue", "name": "screenshot", "value": "computer_screenshot", @@ -61969,7 +61995,7 @@ "$ref": "661" }, "enumType": { - "$id": "4987", + "$id": "4989", "kind": "enum", "decorators": [], "doc": "A computer screenshot image used with the computer use tool.", @@ -61977,7 +62003,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4988", + "$id": "4990", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -61986,16 +62012,16 @@ }, "values": [ { - "$id": "4989", + "$id": "4991", "kind": "enumvalue", "decorators": [], "name": "screenshot", "value": "computer_screenshot", "valueType": { - "$ref": "4988" + "$ref": "4990" }, "enumType": { - "$ref": "4987" + "$ref": "4989" } } ], @@ -62024,12 +62050,12 @@ "isHttpMetadata": false }, { - "$id": "4990", + "$id": "4992", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "4991", + "$id": "4993", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62049,12 +62075,12 @@ "isHttpMetadata": false }, { - "$id": "4992", + "$id": "4994", "kind": "property", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "4993", + "$id": "4995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62093,7 +62119,7 @@ ] }, "web_search_call": { - "$id": "4994", + "$id": "4996", "kind": "model", "name": "WebSearchToolCallItemParam", "namespace": "OpenAI", @@ -62108,16 +62134,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "4995", + "$id": "4997", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4996", + "$id": "4998", "kind": "enumvalue", "name": "web_search_call", "value": "web_search_call", @@ -62125,7 +62151,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -62145,7 +62171,7 @@ ] }, "function_call": { - "$id": "4997", + "$id": "4999", "kind": "model", "name": "FunctionToolCallItemParam", "namespace": "OpenAI", @@ -62160,16 +62186,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "4998", + "$id": "5000", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4999", + "$id": "5001", "kind": "enumvalue", "name": "function_call", "value": "function_call", @@ -62177,7 +62203,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -62195,13 +62221,13 @@ "isHttpMetadata": false }, { - "$id": "5000", + "$id": "5002", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5001", + "$id": "5003", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62221,13 +62247,13 @@ "isHttpMetadata": false }, { - "$id": "5002", + "$id": "5004", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "5003", + "$id": "5005", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62247,13 +62273,13 @@ "isHttpMetadata": false }, { - "$id": "5004", + "$id": "5006", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "5005", + "$id": "5007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62275,7 +62301,7 @@ ] }, "reasoning": { - "$id": "5006", + "$id": "5008", "kind": "model", "name": "ReasoningItemParam", "namespace": "OpenAI", @@ -62290,16 +62316,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5007", + "$id": "5009", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5008", + "$id": "5010", "kind": "enumvalue", "name": "reasoning", "value": "reasoning", @@ -62307,7 +62333,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -62325,16 +62351,16 @@ "isHttpMetadata": false }, { - "$id": "5009", + "$id": "5011", "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": "5010", + "$id": "5012", "kind": "nullable", "type": { - "$id": "5011", + "$id": "5013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62356,17 +62382,17 @@ "isHttpMetadata": false }, { - "$id": "5012", + "$id": "5014", "kind": "property", "name": "summary", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$id": "5013", + "$id": "5015", "kind": "array", "name": "ArrayReasoningItemSummaryPart", "valueType": { - "$id": "5014", + "$id": "5016", "kind": "model", "name": "ReasoningItemSummaryPart", "namespace": "OpenAI", @@ -62379,7 +62405,7 @@ } ], "discriminatorProperty": { - "$id": "5015", + "$id": "5017", "kind": "property", "name": "type", "serializedName": "type", @@ -62401,12 +62427,12 @@ }, "properties": [ { - "$ref": "5015" + "$ref": "5017" } ], "discriminatedSubtypes": { "summary_text": { - "$id": "5016", + "$id": "5018", "kind": "model", "name": "ReasoningItemSummaryTextPart", "namespace": "OpenAI", @@ -62420,16 +62446,16 @@ } ], "baseModel": { - "$ref": "5014" + "$ref": "5016" }, "properties": [ { - "$id": "5017", + "$id": "5019", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5018", + "$id": "5020", "kind": "enumvalue", "name": "summary_text", "value": "summary_text", @@ -62437,7 +62463,7 @@ "$ref": "664" }, "enumType": { - "$id": "5019", + "$id": "5021", "kind": "enum", "decorators": [ { @@ -62449,7 +62475,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5020", + "$id": "5022", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -62458,16 +62484,16 @@ }, "values": [ { - "$id": "5021", + "$id": "5023", "kind": "enumvalue", "decorators": [], "name": "summary_text", "value": "summary_text", "valueType": { - "$ref": "5020" + "$ref": "5022" }, "enumType": { - "$ref": "5019" + "$ref": "5021" } } ], @@ -62496,12 +62522,12 @@ "isHttpMetadata": false }, { - "$id": "5022", + "$id": "5024", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5023", + "$id": "5025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62543,7 +62569,7 @@ ] }, "item_reference": { - "$id": "5024", + "$id": "5026", "kind": "model", "name": "ItemReferenceItemParam", "namespace": "OpenAI", @@ -62558,16 +62584,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5025", + "$id": "5027", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5026", + "$id": "5028", "kind": "enumvalue", "name": "item_reference", "value": "item_reference", @@ -62575,7 +62601,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -62593,13 +62619,13 @@ "isHttpMetadata": false }, { - "$id": "5027", + "$id": "5029", "kind": "property", "name": "id", "serializedName": "id", "doc": "The service-originated ID of the previously generated response item being referenced.", "type": { - "$id": "5028", + "$id": "5030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62621,7 +62647,7 @@ ] }, "image_generation_call": { - "$id": "5029", + "$id": "5031", "kind": "model", "name": "ImageGenToolCallItemParam", "namespace": "OpenAI", @@ -62636,16 +62662,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5030", + "$id": "5032", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5031", + "$id": "5033", "kind": "enumvalue", "name": "image_generation_call", "value": "image_generation_call", @@ -62653,7 +62679,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -62671,16 +62697,16 @@ "isHttpMetadata": false }, { - "$id": "5032", + "$id": "5034", "kind": "property", "name": "result", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$id": "5033", + "$id": "5035", "kind": "nullable", "type": { - "$id": "5034", + "$id": "5036", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -62705,7 +62731,7 @@ ] }, "code_interpreter_call": { - "$id": "5035", + "$id": "5037", "kind": "model", "name": "CodeInterpreterToolCallItemParam", "namespace": "OpenAI", @@ -62720,16 +62746,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5036", + "$id": "5038", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5037", + "$id": "5039", "kind": "enumvalue", "name": "code_interpreter_call", "value": "code_interpreter_call", @@ -62737,7 +62763,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -62755,13 +62781,13 @@ "isHttpMetadata": false }, { - "$id": "5038", + "$id": "5040", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "5039", + "$id": "5041", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62781,13 +62807,13 @@ "isHttpMetadata": false }, { - "$id": "5040", + "$id": "5042", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "5041", + "$id": "5043", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62807,17 +62833,17 @@ "isHttpMetadata": false }, { - "$id": "5042", + "$id": "5044", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$id": "5043", + "$id": "5045", "kind": "array", "name": "ArrayCodeInterpreterToolOutput", "valueType": { - "$id": "5044", + "$id": "5046", "kind": "model", "name": "CodeInterpreterToolOutput", "namespace": "OpenAI", @@ -62830,7 +62856,7 @@ } ], "discriminatorProperty": { - "$id": "5045", + "$id": "5047", "kind": "property", "name": "type", "serializedName": "type", @@ -62853,12 +62879,12 @@ }, "properties": [ { - "$ref": "5045" + "$ref": "5047" } ], "discriminatedSubtypes": { "logs": { - "$id": "5046", + "$id": "5048", "kind": "model", "name": "CodeInterpreterToolLogsOutput", "namespace": "OpenAI", @@ -62872,17 +62898,17 @@ } ], "baseModel": { - "$ref": "5044" + "$ref": "5046" }, "properties": [ { - "$id": "5047", + "$id": "5049", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'logs'.", "type": { - "$id": "5048", + "$id": "5050", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -62890,7 +62916,7 @@ "$ref": "667" }, "enumType": { - "$id": "5049", + "$id": "5051", "kind": "enum", "decorators": [ { @@ -62902,7 +62928,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5050", + "$id": "5052", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -62911,29 +62937,29 @@ }, "values": [ { - "$id": "5051", + "$id": "5053", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "5050" + "$ref": "5052" }, "enumType": { - "$ref": "5049" + "$ref": "5051" } }, { - "$id": "5052", + "$id": "5054", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "5050" + "$ref": "5052" }, "enumType": { - "$ref": "5049" + "$ref": "5051" } } ], @@ -62962,13 +62988,13 @@ "isHttpMetadata": false }, { - "$id": "5053", + "$id": "5055", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The logs output from the code interpreter.", "type": { - "$id": "5054", + "$id": "5056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62990,7 +63016,7 @@ ] }, "image": { - "$id": "5055", + "$id": "5057", "kind": "model", "name": "CodeInterpreterToolImageOutput", "namespace": "OpenAI", @@ -63004,17 +63030,17 @@ } ], "baseModel": { - "$ref": "5044" + "$ref": "5046" }, "properties": [ { - "$id": "5056", + "$id": "5058", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'image'.", "type": { - "$id": "5057", + "$id": "5059", "kind": "enumvalue", "name": "image", "value": "image", @@ -63022,7 +63048,7 @@ "$ref": "667" }, "enumType": { - "$ref": "5049" + "$ref": "5051" }, "decorators": [] }, @@ -63040,13 +63066,13 @@ "isHttpMetadata": false }, { - "$id": "5058", + "$id": "5060", "kind": "property", "name": "ImageUri", "serializedName": "url", "doc": "The URL of the image output from the code interpreter.", "type": { - "$id": "5059", + "$id": "5061", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -63088,7 +63114,7 @@ ] }, "local_shell_call": { - "$id": "5060", + "$id": "5062", "kind": "model", "name": "LocalShellToolCallItemParam", "namespace": "OpenAI", @@ -63103,16 +63129,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5061", + "$id": "5063", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5062", + "$id": "5064", "kind": "enumvalue", "name": "local_shell_call", "value": "local_shell_call", @@ -63120,7 +63146,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -63138,13 +63164,13 @@ "isHttpMetadata": false }, { - "$id": "5063", + "$id": "5065", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "5064", + "$id": "5066", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63164,12 +63190,12 @@ "isHttpMetadata": false }, { - "$id": "5065", + "$id": "5067", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "5066", + "$id": "5068", "kind": "model", "name": "LocalShellExecAction", "namespace": "OpenAI", @@ -63184,7 +63210,7 @@ ], "properties": [ { - "$id": "5067", + "$id": "5069", "kind": "property", "name": "type", "serializedName": "type", @@ -63206,7 +63232,7 @@ "isHttpMetadata": false }, { - "$id": "5068", + "$id": "5070", "kind": "property", "name": "command", "serializedName": "command", @@ -63228,16 +63254,16 @@ "isHttpMetadata": false }, { - "$id": "5069", + "$id": "5071", "kind": "property", "name": "timeout_ms", "serializedName": "timeout_ms", "doc": "Optional timeout in milliseconds for the command.", "type": { - "$id": "5070", + "$id": "5072", "kind": "nullable", "type": { - "$id": "5071", + "$id": "5073", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63259,16 +63285,16 @@ "isHttpMetadata": false }, { - "$id": "5072", + "$id": "5074", "kind": "property", "name": "working_directory", "serializedName": "working_directory", "doc": "Optional working directory to run the command in.", "type": { - "$id": "5073", + "$id": "5075", "kind": "nullable", "type": { - "$id": "5074", + "$id": "5076", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63290,7 +63316,7 @@ "isHttpMetadata": false }, { - "$id": "5075", + "$id": "5077", "kind": "property", "name": "env", "serializedName": "env", @@ -63312,16 +63338,16 @@ "isHttpMetadata": false }, { - "$id": "5076", + "$id": "5078", "kind": "property", "name": "user", "serializedName": "user", "doc": "Optional user to run the command as.", "type": { - "$id": "5077", + "$id": "5079", "kind": "nullable", "type": { - "$id": "5078", + "$id": "5080", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63360,7 +63386,7 @@ ] }, "local_shell_call_output": { - "$id": "5079", + "$id": "5081", "kind": "model", "name": "LocalShellToolCallOutputItemParam", "namespace": "OpenAI", @@ -63375,16 +63401,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5080", + "$id": "5082", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5081", + "$id": "5083", "kind": "enumvalue", "name": "local_shell_call_output", "value": "local_shell_call_output", @@ -63392,7 +63418,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -63410,13 +63436,13 @@ "isHttpMetadata": false }, { - "$id": "5082", + "$id": "5084", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "5083", + "$id": "5085", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63438,7 +63464,7 @@ ] }, "mcp_list_tools": { - "$id": "5084", + "$id": "5086", "kind": "model", "name": "MCPListToolsItemParam", "namespace": "OpenAI", @@ -63453,16 +63479,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5085", + "$id": "5087", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5086", + "$id": "5088", "kind": "enumvalue", "name": "mcp_list_tools", "value": "mcp_list_tools", @@ -63470,7 +63496,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -63488,13 +63514,13 @@ "isHttpMetadata": false }, { - "$id": "5087", + "$id": "5089", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "5088", + "$id": "5090", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63514,17 +63540,17 @@ "isHttpMetadata": false }, { - "$id": "5089", + "$id": "5091", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$id": "5090", + "$id": "5092", "kind": "array", "name": "ArrayMcpListToolsTool", "valueType": { - "$id": "5091", + "$id": "5093", "kind": "model", "name": "MCPListToolsTool", "namespace": "OpenAI", @@ -63539,13 +63565,13 @@ ], "properties": [ { - "$id": "5092", + "$id": "5094", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool.", "type": { - "$id": "5093", + "$id": "5095", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63565,16 +63591,16 @@ "isHttpMetadata": false }, { - "$id": "5094", + "$id": "5096", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the tool.", "type": { - "$id": "5095", + "$id": "5097", "kind": "nullable", "type": { - "$id": "5096", + "$id": "5098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63596,13 +63622,13 @@ "isHttpMetadata": false }, { - "$id": "5097", + "$id": "5099", "kind": "property", "name": "input_schema", "serializedName": "input_schema", "doc": "The JSON schema describing the tool's input.", "type": { - "$id": "5098", + "$id": "5100", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -63622,16 +63648,16 @@ "isHttpMetadata": false }, { - "$id": "5099", + "$id": "5101", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Additional annotations about the tool.", "type": { - "$id": "5100", + "$id": "5102", "kind": "nullable", "type": { - "$id": "5101", + "$id": "5103", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -63671,16 +63697,16 @@ "isHttpMetadata": false }, { - "$id": "5102", + "$id": "5104", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "5103", + "$id": "5105", "kind": "nullable", "type": { - "$id": "5104", + "$id": "5106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63704,7 +63730,7 @@ ] }, "mcp_approval_request": { - "$id": "5105", + "$id": "5107", "kind": "model", "name": "MCPApprovalRequestItemParam", "namespace": "OpenAI", @@ -63719,16 +63745,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5106", + "$id": "5108", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5107", + "$id": "5109", "kind": "enumvalue", "name": "mcp_approval_request", "value": "mcp_approval_request", @@ -63736,7 +63762,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -63754,13 +63780,13 @@ "isHttpMetadata": false }, { - "$id": "5108", + "$id": "5110", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5109", + "$id": "5111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63780,13 +63806,13 @@ "isHttpMetadata": false }, { - "$id": "5110", + "$id": "5112", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5111", + "$id": "5113", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63806,13 +63832,13 @@ "isHttpMetadata": false }, { - "$id": "5112", + "$id": "5114", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5113", + "$id": "5115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63834,7 +63860,7 @@ ] }, "mcp_approval_response": { - "$id": "5114", + "$id": "5116", "kind": "model", "name": "MCPApprovalResponseItemParam", "namespace": "OpenAI", @@ -63849,16 +63875,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5115", + "$id": "5117", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5116", + "$id": "5118", "kind": "enumvalue", "name": "mcp_approval_response", "value": "mcp_approval_response", @@ -63866,7 +63892,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -63884,13 +63910,13 @@ "isHttpMetadata": false }, { - "$id": "5117", + "$id": "5119", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5118", + "$id": "5120", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63910,13 +63936,13 @@ "isHttpMetadata": false }, { - "$id": "5119", + "$id": "5121", "kind": "property", "name": "approve", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5120", + "$id": "5122", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -63936,16 +63962,16 @@ "isHttpMetadata": false }, { - "$id": "5121", + "$id": "5123", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$id": "5122", + "$id": "5124", "kind": "nullable", "type": { - "$id": "5123", + "$id": "5125", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63969,7 +63995,7 @@ ] }, "mcp_call": { - "$id": "5124", + "$id": "5126", "kind": "model", "name": "MCPCallItemParam", "namespace": "OpenAI", @@ -63984,16 +64010,16 @@ } ], "baseModel": { - "$ref": "4818" + "$ref": "4820" }, "properties": [ { - "$id": "5125", + "$id": "5127", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5126", + "$id": "5128", "kind": "enumvalue", "name": "mcp_call", "value": "mcp_call", @@ -64001,7 +64027,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4824" + "$ref": "4826" }, "decorators": [] }, @@ -64019,13 +64045,13 @@ "isHttpMetadata": false }, { - "$id": "5127", + "$id": "5129", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5128", + "$id": "5130", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64045,13 +64071,13 @@ "isHttpMetadata": false }, { - "$id": "5129", + "$id": "5131", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5130", + "$id": "5132", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64071,13 +64097,13 @@ "isHttpMetadata": false }, { - "$id": "5131", + "$id": "5133", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5132", + "$id": "5134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64097,16 +64123,16 @@ "isHttpMetadata": false }, { - "$id": "5133", + "$id": "5135", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$id": "5134", + "$id": "5136", "kind": "nullable", "type": { - "$id": "5135", + "$id": "5137", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64128,16 +64154,16 @@ "isHttpMetadata": false }, { - "$id": "5136", + "$id": "5138", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5137", + "$id": "5139", "kind": "nullable", "type": { - "$id": "5138", + "$id": "5140", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64187,16 +64213,16 @@ "isHttpMetadata": false }, { - "$id": "5139", + "$id": "5141", "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": "5140", + "$id": "5142", "kind": "nullable", "type": { - "$id": "5141", + "$id": "5143", "kind": "array", "name": "ArrayIncludable", "valueType": { @@ -64221,16 +64247,16 @@ "isHttpMetadata": false }, { - "$id": "5142", + "$id": "5144", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5143", + "$id": "5145", "kind": "nullable", "type": { - "$id": "5144", + "$id": "5146", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64252,16 +64278,16 @@ "isHttpMetadata": false }, { - "$id": "5145", + "$id": "5147", "kind": "property", "name": "store", "serializedName": "store", "doc": "Whether to store the generated model response for later retrieval via\nAPI.", "type": { - "$id": "5146", + "$id": "5148", "kind": "nullable", "type": { - "$id": "5147", + "$id": "5149", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64283,16 +64309,16 @@ "isHttpMetadata": false }, { - "$id": "5148", + "$id": "5150", "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": "5149", + "$id": "5151", "kind": "nullable", "type": { - "$id": "5150", + "$id": "5152", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -64379,154 +64405,154 @@ "$ref": "4758" }, { - "$ref": "4771" + "$ref": "4773" }, { - "$ref": "4782" + "$ref": "4784" }, { - "$ref": "4795" + "$ref": "4797" }, { - "$ref": "4804" + "$ref": "4806" }, { - "$ref": "4812" - }, - { - "$ref": "4818" + "$ref": "4814" }, { "$ref": "4820" }, { - "$ref": "4843" + "$ref": "4822" }, { - "$ref": "4853" + "$ref": "4845" }, { - "$ref": "4857" + "$ref": "4855" }, { - "$ref": "4861" + "$ref": "4859" }, { - "$ref": "4865" + "$ref": "4863" }, { - "$ref": "4872" + "$ref": "4867" }, { - "$ref": "4879" + "$ref": "4874" }, { - "$ref": "4889" + "$ref": "4881" }, { - "$ref": "4895" + "$ref": "4891" }, { "$ref": "4897" }, { - "$ref": "4916" + "$ref": "4899" }, { - "$ref": "4923" + "$ref": "4918" }, { - "$ref": "4928" + "$ref": "4925" }, { - "$ref": "4933" + "$ref": "4930" }, { - "$ref": "4940" + "$ref": "4935" }, { - "$ref": "4943" + "$ref": "4942" }, { - "$ref": "4954" + "$ref": "4945" }, { - "$ref": "4959" + "$ref": "4956" }, { - "$ref": "4962" + "$ref": "4961" }, { - "$ref": "4968" + "$ref": "4964" }, { - "$ref": "4975" + "$ref": "4970" }, { - "$ref": "4982" + "$ref": "4977" }, { "$ref": "4984" }, { - "$ref": "4994" + "$ref": "4986" }, { - "$ref": "4997" + "$ref": "4996" }, { - "$ref": "5006" + "$ref": "4999" }, { - "$ref": "5014" + "$ref": "5008" }, { "$ref": "5016" }, { - "$ref": "5024" + "$ref": "5018" }, { - "$ref": "5029" + "$ref": "5026" }, { - "$ref": "5035" + "$ref": "5031" }, { - "$ref": "5044" + "$ref": "5037" }, { "$ref": "5046" }, { - "$ref": "5055" + "$ref": "5048" + }, + { + "$ref": "5057" }, { - "$ref": "5060" + "$ref": "5062" }, { - "$ref": "5066" + "$ref": "5068" }, { - "$ref": "5079" + "$ref": "5081" }, { - "$ref": "5084" + "$ref": "5086" }, { - "$ref": "5091" + "$ref": "5093" }, { - "$ref": "5105" + "$ref": "5107" }, { - "$ref": "5114" + "$ref": "5116" }, { - "$ref": "5124" + "$ref": "5126" }, { - "$id": "5151", + "$id": "5153", "kind": "model", "name": "Response", "namespace": "OpenAI", @@ -64540,7 +64566,7 @@ ], "properties": [ { - "$id": "5152", + "$id": "5154", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -64562,16 +64588,16 @@ "isHttpMetadata": false }, { - "$id": "5153", + "$id": "5155", "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": "5154", + "$id": "5156", "kind": "nullable", "type": { - "$id": "5155", + "$id": "5157", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -64593,16 +64619,16 @@ "isHttpMetadata": false }, { - "$id": "5156", + "$id": "5158", "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": "5157", + "$id": "5159", "kind": "nullable", "type": { - "$id": "5158", + "$id": "5160", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -64624,16 +64650,16 @@ "isHttpMetadata": false }, { - "$id": "5159", + "$id": "5161", "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": "5160", + "$id": "5162", "kind": "nullable", "type": { - "$id": "5161", + "$id": "5163", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64655,7 +64681,7 @@ "isHttpMetadata": false }, { - "$id": "5162", + "$id": "5164", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -64676,7 +64702,7 @@ "isHttpMetadata": false }, { - "$id": "5163", + "$id": "5165", "kind": "property", "name": "previous_response_id", "serializedName": "previous_response_id", @@ -64698,7 +64724,7 @@ "isHttpMetadata": false }, { - "$id": "5164", + "$id": "5166", "kind": "property", "name": "model", "serializedName": "model", @@ -64720,7 +64746,7 @@ "isHttpMetadata": false }, { - "$id": "5165", + "$id": "5167", "kind": "property", "name": "reasoning", "serializedName": "reasoning", @@ -64741,7 +64767,7 @@ "isHttpMetadata": false }, { - "$id": "5166", + "$id": "5168", "kind": "property", "name": "background", "serializedName": "background", @@ -64763,7 +64789,7 @@ "isHttpMetadata": false }, { - "$id": "5167", + "$id": "5169", "kind": "property", "name": "max_output_tokens", "serializedName": "max_output_tokens", @@ -64785,7 +64811,7 @@ "isHttpMetadata": false }, { - "$id": "5168", + "$id": "5170", "kind": "property", "name": "instructions", "serializedName": "instructions", @@ -64807,7 +64833,7 @@ "isHttpMetadata": false }, { - "$id": "5169", + "$id": "5171", "kind": "property", "name": "text", "serializedName": "text", @@ -64829,7 +64855,7 @@ "isHttpMetadata": false }, { - "$id": "5170", + "$id": "5172", "kind": "property", "name": "tools", "serializedName": "tools", @@ -64851,7 +64877,7 @@ "isHttpMetadata": false }, { - "$id": "5171", + "$id": "5173", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", @@ -64873,7 +64899,7 @@ "isHttpMetadata": false }, { - "$id": "5172", + "$id": "5174", "kind": "property", "name": "truncation", "serializedName": "truncation", @@ -64895,13 +64921,13 @@ "isHttpMetadata": false }, { - "$id": "5173", + "$id": "5175", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this Response.", "type": { - "$id": "5174", + "$id": "5176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64921,7 +64947,7 @@ "isHttpMetadata": false }, { - "$id": "5175", + "$id": "5177", "kind": "property", "name": "object", "serializedName": "object", @@ -64943,7 +64969,7 @@ "isHttpMetadata": false }, { - "$id": "5176", + "$id": "5178", "kind": "property", "name": "status", "serializedName": "status", @@ -64965,18 +64991,18 @@ "isHttpMetadata": false }, { - "$id": "5177", + "$id": "5179", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) of when this Response was created.", "type": { - "$id": "5178", + "$id": "5180", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5179", + "$id": "5181", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64999,15 +65025,15 @@ "isHttpMetadata": false }, { - "$id": "5180", + "$id": "5182", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "5181", + "$id": "5183", "kind": "nullable", "type": { - "$id": "5182", + "$id": "5184", "kind": "model", "name": "ResponseError", "namespace": "OpenAI", @@ -65022,7 +65048,7 @@ ], "properties": [ { - "$id": "5183", + "$id": "5185", "kind": "property", "name": "code", "serializedName": "code", @@ -65043,13 +65069,13 @@ "isHttpMetadata": false }, { - "$id": "5184", + "$id": "5186", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "5185", + "$id": "5187", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65086,16 +65112,16 @@ "isHttpMetadata": false }, { - "$id": "5186", + "$id": "5188", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "Details about why the response is incomplete.", "type": { - "$id": "5187", + "$id": "5189", "kind": "nullable", "type": { - "$id": "5188", + "$id": "5190", "kind": "model", "name": "ResponseIncompleteDetails1", "namespace": "OpenAI", @@ -65104,7 +65130,7 @@ "decorators": [], "properties": [ { - "$id": "5189", + "$id": "5191", "kind": "property", "name": "reason", "serializedName": "reason", @@ -65143,17 +65169,17 @@ "isHttpMetadata": false }, { - "$id": "5190", + "$id": "5192", "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": "5191", + "$id": "5193", "kind": "array", "name": "ArrayItemResource", "valueType": { - "$id": "5192", + "$id": "5194", "kind": "model", "name": "ItemResource", "namespace": "OpenAI", @@ -65167,7 +65193,7 @@ } ], "discriminatorProperty": { - "$id": "5193", + "$id": "5195", "kind": "property", "name": "type", "serializedName": "type", @@ -65189,15 +65215,15 @@ }, "properties": [ { - "$ref": "5193" + "$ref": "5195" }, { - "$id": "5194", + "$id": "5196", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5195", + "$id": "5197", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65219,7 +65245,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "5196", + "$id": "5198", "kind": "model", "name": "ResponsesMessageItemResource", "namespace": "OpenAI", @@ -65234,7 +65260,7 @@ } ], "discriminatorProperty": { - "$id": "5197", + "$id": "5199", "kind": "property", "name": "role", "serializedName": "role", @@ -65256,17 +65282,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5198", + "$id": "5200", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$ref": "4823" + "$ref": "4825" }, "optional": false, "readOnly": false, @@ -65282,7 +65308,7 @@ "isHttpMetadata": false }, { - "$id": "5199", + "$id": "5201", "kind": "property", "name": "status", "serializedName": "status", @@ -65304,12 +65330,12 @@ "isHttpMetadata": false }, { - "$ref": "5197" + "$ref": "5199" } ], "discriminatedSubtypes": { "user": { - "$id": "5200", + "$id": "5202", "kind": "model", "name": "ResponsesUserMessageItemResource", "namespace": "OpenAI", @@ -65324,17 +65350,17 @@ } ], "baseModel": { - "$ref": "5196" + "$ref": "5198" }, "properties": [ { - "$id": "5201", + "$id": "5203", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$ref": "4845" + "$ref": "4847" }, "optional": false, "readOnly": false, @@ -65350,7 +65376,7 @@ "isHttpMetadata": false }, { - "$id": "5202", + "$id": "5204", "kind": "property", "name": "content", "serializedName": "content", @@ -65374,7 +65400,7 @@ ] }, "system": { - "$id": "5203", + "$id": "5205", "kind": "model", "name": "ResponsesSystemMessageItemResource", "namespace": "OpenAI", @@ -65389,17 +65415,17 @@ } ], "baseModel": { - "$ref": "5196" + "$ref": "5198" }, "properties": [ { - "$id": "5204", + "$id": "5206", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$ref": "4855" + "$ref": "4857" }, "optional": false, "readOnly": false, @@ -65415,7 +65441,7 @@ "isHttpMetadata": false }, { - "$id": "5205", + "$id": "5207", "kind": "property", "name": "content", "serializedName": "content", @@ -65439,7 +65465,7 @@ ] }, "developer": { - "$id": "5206", + "$id": "5208", "kind": "model", "name": "ResponsesDeveloperMessageItemResource", "namespace": "OpenAI", @@ -65454,17 +65480,17 @@ } ], "baseModel": { - "$ref": "5196" + "$ref": "5198" }, "properties": [ { - "$id": "5207", + "$id": "5209", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$ref": "4859" + "$ref": "4861" }, "optional": false, "readOnly": false, @@ -65480,7 +65506,7 @@ "isHttpMetadata": false }, { - "$id": "5208", + "$id": "5210", "kind": "property", "name": "content", "serializedName": "content", @@ -65504,7 +65530,7 @@ ] }, "assistant": { - "$id": "5209", + "$id": "5211", "kind": "model", "name": "ResponsesAssistantMessageItemResource", "namespace": "OpenAI", @@ -65519,17 +65545,17 @@ } ], "baseModel": { - "$ref": "5196" + "$ref": "5198" }, "properties": [ { - "$id": "5210", + "$id": "5212", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$ref": "4863" + "$ref": "4865" }, "optional": false, "readOnly": false, @@ -65545,7 +65571,7 @@ "isHttpMetadata": false }, { - "$id": "5211", + "$id": "5213", "kind": "property", "name": "content", "serializedName": "content", @@ -65571,7 +65597,7 @@ } }, "computer_call_output": { - "$id": "5212", + "$id": "5214", "kind": "model", "name": "ComputerToolCallOutputItemResource", "namespace": "OpenAI", @@ -65586,16 +65612,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5213", + "$id": "5215", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4977" + "$ref": "4979" }, "optional": false, "readOnly": false, @@ -65611,7 +65637,7 @@ "isHttpMetadata": false }, { - "$id": "5214", + "$id": "5216", "kind": "property", "name": "status", "serializedName": "status", @@ -65633,13 +65659,13 @@ "isHttpMetadata": false }, { - "$id": "5215", + "$id": "5217", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "5216", + "$id": "5218", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65659,13 +65685,13 @@ "isHttpMetadata": false }, { - "$id": "5217", + "$id": "5219", "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": "4967" + "$ref": "4969" }, "optional": true, "readOnly": false, @@ -65681,12 +65707,12 @@ "isHttpMetadata": false }, { - "$id": "5218", + "$id": "5220", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$ref": "4982" + "$ref": "4984" }, "optional": false, "readOnly": false, @@ -65704,7 +65730,7 @@ ] }, "function_call": { - "$id": "5219", + "$id": "5221", "kind": "model", "name": "FunctionToolCallItemResource", "namespace": "OpenAI", @@ -65719,16 +65745,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5220", + "$id": "5222", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4999" + "$ref": "5001" }, "optional": false, "readOnly": false, @@ -65744,7 +65770,7 @@ "isHttpMetadata": false }, { - "$id": "5221", + "$id": "5223", "kind": "property", "name": "status", "serializedName": "status", @@ -65766,13 +65792,13 @@ "isHttpMetadata": false }, { - "$id": "5222", + "$id": "5224", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5223", + "$id": "5225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65792,13 +65818,13 @@ "isHttpMetadata": false }, { - "$id": "5224", + "$id": "5226", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "5225", + "$id": "5227", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65818,13 +65844,13 @@ "isHttpMetadata": false }, { - "$id": "5226", + "$id": "5228", "kind": "property", "name": "FunctionArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "5227", + "$id": "5229", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -65846,7 +65872,7 @@ ] }, "function_call_output": { - "$id": "5228", + "$id": "5230", "kind": "model", "name": "FunctionToolCallOutputItemResource", "namespace": "OpenAI", @@ -65861,16 +65887,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5229", + "$id": "5231", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4867" + "$ref": "4869" }, "optional": false, "readOnly": false, @@ -65886,7 +65912,7 @@ "isHttpMetadata": false }, { - "$id": "5230", + "$id": "5232", "kind": "property", "name": "status", "serializedName": "status", @@ -65908,13 +65934,13 @@ "isHttpMetadata": false }, { - "$id": "5231", + "$id": "5233", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5232", + "$id": "5234", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65934,13 +65960,13 @@ "isHttpMetadata": false }, { - "$id": "5233", + "$id": "5235", "kind": "property", "name": "FunctionOutput", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "5234", + "$id": "5236", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65962,7 +65988,7 @@ ] }, "mcp_approval_response": { - "$id": "5235", + "$id": "5237", "kind": "model", "name": "MCPApprovalResponseItemResource", "namespace": "OpenAI", @@ -65977,16 +66003,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5236", + "$id": "5238", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5116" + "$ref": "5118" }, "optional": false, "readOnly": false, @@ -66002,13 +66028,13 @@ "isHttpMetadata": false }, { - "$id": "5237", + "$id": "5239", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5238", + "$id": "5240", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66028,13 +66054,13 @@ "isHttpMetadata": false }, { - "$id": "5239", + "$id": "5241", "kind": "property", "name": "Approved", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5240", + "$id": "5242", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66054,13 +66080,13 @@ "isHttpMetadata": false }, { - "$id": "5241", + "$id": "5243", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$ref": "5122" + "$ref": "5124" }, "optional": true, "readOnly": false, @@ -66078,7 +66104,7 @@ ] }, "file_search_call": { - "$id": "5242", + "$id": "5244", "kind": "model", "name": "FileSearchToolCallItemResource", "namespace": "OpenAI", @@ -66093,16 +66119,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5243", + "$id": "5245", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4874" + "$ref": "4876" }, "optional": false, "readOnly": false, @@ -66118,7 +66144,7 @@ "isHttpMetadata": false }, { - "$id": "5244", + "$id": "5246", "kind": "property", "name": "status", "serializedName": "status", @@ -66140,7 +66166,7 @@ "isHttpMetadata": false }, { - "$id": "5245", + "$id": "5247", "kind": "property", "name": "queries", "serializedName": "queries", @@ -66162,13 +66188,13 @@ "isHttpMetadata": false }, { - "$id": "5246", + "$id": "5248", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$ref": "4877" + "$ref": "4879" }, "optional": true, "readOnly": false, @@ -66186,7 +66212,7 @@ ] }, "computer_call": { - "$id": "5247", + "$id": "5249", "kind": "model", "name": "ComputerToolCallItemResource", "namespace": "OpenAI", @@ -66201,16 +66227,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5248", + "$id": "5250", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4891" + "$ref": "4893" }, "optional": false, "readOnly": false, @@ -66226,7 +66252,7 @@ "isHttpMetadata": false }, { - "$id": "5249", + "$id": "5251", "kind": "property", "name": "status", "serializedName": "status", @@ -66248,13 +66274,13 @@ "isHttpMetadata": false }, { - "$id": "5250", + "$id": "5252", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "5251", + "$id": "5253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66274,12 +66300,12 @@ "isHttpMetadata": false }, { - "$id": "5252", + "$id": "5254", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4895" + "$ref": "4897" }, "optional": false, "readOnly": false, @@ -66295,13 +66321,13 @@ "isHttpMetadata": false }, { - "$id": "5253", + "$id": "5255", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$ref": "4967" + "$ref": "4969" }, "optional": false, "readOnly": false, @@ -66319,7 +66345,7 @@ ] }, "web_search_call": { - "$id": "5254", + "$id": "5256", "kind": "model", "name": "WebSearchToolCallItemResource", "namespace": "OpenAI", @@ -66334,16 +66360,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5255", + "$id": "5257", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4996" + "$ref": "4998" }, "optional": false, "readOnly": false, @@ -66359,7 +66385,7 @@ "isHttpMetadata": false }, { - "$id": "5256", + "$id": "5258", "kind": "property", "name": "status", "serializedName": "status", @@ -66383,7 +66409,7 @@ ] }, "reasoning": { - "$id": "5257", + "$id": "5259", "kind": "model", "name": "ReasoningItemResource", "namespace": "OpenAI", @@ -66398,16 +66424,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5258", + "$id": "5260", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5008" + "$ref": "5010" }, "optional": false, "readOnly": false, @@ -66423,7 +66449,7 @@ "isHttpMetadata": false }, { - "$id": "5259", + "$id": "5261", "kind": "property", "name": "status", "serializedName": "status", @@ -66445,13 +66471,13 @@ "isHttpMetadata": false }, { - "$id": "5260", + "$id": "5262", "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": "5010" + "$ref": "5012" }, "optional": true, "readOnly": false, @@ -66467,13 +66493,13 @@ "isHttpMetadata": false }, { - "$id": "5261", + "$id": "5263", "kind": "property", "name": "SummaryParts", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$ref": "5013" + "$ref": "5015" }, "optional": false, "readOnly": false, @@ -66491,7 +66517,7 @@ ] }, "image_generation_call": { - "$id": "5262", + "$id": "5264", "kind": "model", "name": "ImageGenToolCallItemResource", "namespace": "OpenAI", @@ -66506,16 +66532,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5263", + "$id": "5265", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5031" + "$ref": "5033" }, "optional": false, "readOnly": false, @@ -66531,7 +66557,7 @@ "isHttpMetadata": false }, { - "$id": "5264", + "$id": "5266", "kind": "property", "name": "status", "serializedName": "status", @@ -66552,13 +66578,13 @@ "isHttpMetadata": false }, { - "$id": "5265", + "$id": "5267", "kind": "property", "name": "ImageResultBytes", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$ref": "5033" + "$ref": "5035" }, "optional": false, "readOnly": false, @@ -66576,7 +66602,7 @@ ] }, "code_interpreter_call": { - "$id": "5266", + "$id": "5268", "kind": "model", "name": "CodeInterpreterToolCallItemResource", "namespace": "OpenAI", @@ -66591,16 +66617,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5267", + "$id": "5269", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5037" + "$ref": "5039" }, "optional": false, "readOnly": false, @@ -66616,7 +66642,7 @@ "isHttpMetadata": false }, { - "$id": "5268", + "$id": "5270", "kind": "property", "name": "status", "serializedName": "status", @@ -66637,13 +66663,13 @@ "isHttpMetadata": false }, { - "$id": "5269", + "$id": "5271", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "5270", + "$id": "5272", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66663,13 +66689,13 @@ "isHttpMetadata": false }, { - "$id": "5271", + "$id": "5273", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "5272", + "$id": "5274", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66689,13 +66715,13 @@ "isHttpMetadata": false }, { - "$id": "5273", + "$id": "5275", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$ref": "5043" + "$ref": "5045" }, "optional": true, "readOnly": false, @@ -66713,7 +66739,7 @@ ] }, "local_shell_call": { - "$id": "5274", + "$id": "5276", "kind": "model", "name": "LocalShellToolCallItemResource", "namespace": "OpenAI", @@ -66728,16 +66754,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5275", + "$id": "5277", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5062" + "$ref": "5064" }, "optional": false, "readOnly": false, @@ -66753,7 +66779,7 @@ "isHttpMetadata": false }, { - "$id": "5276", + "$id": "5278", "kind": "property", "name": "status", "serializedName": "status", @@ -66774,13 +66800,13 @@ "isHttpMetadata": false }, { - "$id": "5277", + "$id": "5279", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "5278", + "$id": "5280", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66800,12 +66826,12 @@ "isHttpMetadata": false }, { - "$id": "5279", + "$id": "5281", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "5066" + "$ref": "5068" }, "optional": false, "readOnly": false, @@ -66823,7 +66849,7 @@ ] }, "local_shell_call_output": { - "$id": "5280", + "$id": "5282", "kind": "model", "name": "LocalShellToolCallOutputItemResource", "namespace": "OpenAI", @@ -66838,16 +66864,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5281", + "$id": "5283", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5081" + "$ref": "5083" }, "optional": false, "readOnly": false, @@ -66863,7 +66889,7 @@ "isHttpMetadata": false }, { - "$id": "5282", + "$id": "5284", "kind": "property", "name": "status", "serializedName": "status", @@ -66884,13 +66910,13 @@ "isHttpMetadata": false }, { - "$id": "5283", + "$id": "5285", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "5284", + "$id": "5286", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66912,7 +66938,7 @@ ] }, "mcp_list_tools": { - "$id": "5285", + "$id": "5287", "kind": "model", "name": "MCPListToolsItemResource", "namespace": "OpenAI", @@ -66927,16 +66953,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5286", + "$id": "5288", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5086" + "$ref": "5088" }, "optional": false, "readOnly": false, @@ -66952,13 +66978,13 @@ "isHttpMetadata": false }, { - "$id": "5287", + "$id": "5289", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "5288", + "$id": "5290", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66978,13 +67004,13 @@ "isHttpMetadata": false }, { - "$id": "5289", + "$id": "5291", "kind": "property", "name": "ToolDefinitions", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$ref": "5090" + "$ref": "5092" }, "optional": false, "readOnly": false, @@ -67000,16 +67026,16 @@ "isHttpMetadata": false }, { - "$id": "5290", + "$id": "5292", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "5291", + "$id": "5293", "kind": "nullable", "type": { - "$id": "5292", + "$id": "5294", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67033,7 +67059,7 @@ ] }, "mcp_approval_request": { - "$id": "5293", + "$id": "5295", "kind": "model", "name": "MCPApprovalRequestItemResource", "namespace": "OpenAI", @@ -67048,16 +67074,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5294", + "$id": "5296", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5107" + "$ref": "5109" }, "optional": false, "readOnly": false, @@ -67073,13 +67099,13 @@ "isHttpMetadata": false }, { - "$id": "5295", + "$id": "5297", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5296", + "$id": "5298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67099,13 +67125,13 @@ "isHttpMetadata": false }, { - "$id": "5297", + "$id": "5299", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5298", + "$id": "5300", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67125,13 +67151,13 @@ "isHttpMetadata": false }, { - "$id": "5299", + "$id": "5301", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5300", + "$id": "5302", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67153,7 +67179,7 @@ ] }, "mcp_call": { - "$id": "5301", + "$id": "5303", "kind": "model", "name": "MCPCallItemResource", "namespace": "OpenAI", @@ -67168,16 +67194,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5302", + "$id": "5304", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5126" + "$ref": "5128" }, "optional": false, "readOnly": false, @@ -67193,13 +67219,13 @@ "isHttpMetadata": false }, { - "$id": "5303", + "$id": "5305", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5304", + "$id": "5306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67219,13 +67245,13 @@ "isHttpMetadata": false }, { - "$id": "5305", + "$id": "5307", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5306", + "$id": "5308", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67245,13 +67271,13 @@ "isHttpMetadata": false }, { - "$id": "5307", + "$id": "5309", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5308", + "$id": "5310", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67271,13 +67297,13 @@ "isHttpMetadata": false }, { - "$id": "5309", + "$id": "5311", "kind": "property", "name": "ToolOutput", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$ref": "5134" + "$ref": "5136" }, "optional": true, "readOnly": false, @@ -67293,16 +67319,16 @@ "isHttpMetadata": false }, { - "$id": "5310", + "$id": "5312", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5311", + "$id": "5313", "kind": "nullable", "type": { - "$id": "5312", + "$id": "5314", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -67326,7 +67352,7 @@ ] }, "item_reference": { - "$id": "5313", + "$id": "5315", "kind": "model", "name": "DotNetItemReferenceItemResource", "namespace": "OpenAI", @@ -67341,16 +67367,16 @@ } ], "baseModel": { - "$ref": "5192" + "$ref": "5194" }, "properties": [ { - "$id": "5314", + "$id": "5316", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5026" + "$ref": "5028" }, "optional": false, "readOnly": false, @@ -67386,16 +67412,16 @@ "isHttpMetadata": false }, { - "$id": "5315", + "$id": "5317", "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": "5316", + "$id": "5318", "kind": "nullable", "type": { - "$id": "5317", + "$id": "5319", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67417,12 +67443,12 @@ "isHttpMetadata": false }, { - "$id": "5318", + "$id": "5320", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "5319", + "$id": "5321", "kind": "model", "name": "ResponseUsage", "namespace": "OpenAI", @@ -67437,13 +67463,13 @@ ], "properties": [ { - "$id": "5320", + "$id": "5322", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of input tokens.", "type": { - "$id": "5321", + "$id": "5323", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67463,13 +67489,13 @@ "isHttpMetadata": false }, { - "$id": "5322", + "$id": "5324", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "A detailed breakdown of the input tokens.", "type": { - "$id": "5323", + "$id": "5325", "kind": "model", "name": "ResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -67478,13 +67504,13 @@ "decorators": [], "properties": [ { - "$id": "5324", + "$id": "5326", "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": "5325", + "$id": "5327", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67519,13 +67545,13 @@ "isHttpMetadata": false }, { - "$id": "5326", + "$id": "5328", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of output tokens.", "type": { - "$id": "5327", + "$id": "5329", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67545,13 +67571,13 @@ "isHttpMetadata": false }, { - "$id": "5328", + "$id": "5330", "kind": "property", "name": "output_tokens_details", "serializedName": "output_tokens_details", "doc": "A detailed breakdown of the output tokens.", "type": { - "$id": "5329", + "$id": "5331", "kind": "model", "name": "ResponseUsageOutputTokensDetails", "namespace": "OpenAI", @@ -67560,13 +67586,13 @@ "decorators": [], "properties": [ { - "$id": "5330", + "$id": "5332", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "The number of reasoning tokens.", "type": { - "$id": "5331", + "$id": "5333", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67601,13 +67627,13 @@ "isHttpMetadata": false }, { - "$id": "5332", + "$id": "5334", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "5333", + "$id": "5335", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67642,13 +67668,13 @@ "isHttpMetadata": false }, { - "$id": "5334", + "$id": "5336", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5335", + "$id": "5337", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -67670,88 +67696,88 @@ ] }, { - "$ref": "5182" + "$ref": "5184" }, { - "$ref": "5188" + "$ref": "5190" }, { - "$ref": "5192" + "$ref": "5194" }, { - "$ref": "5196" + "$ref": "5198" }, { - "$ref": "5200" + "$ref": "5202" }, { - "$ref": "5203" + "$ref": "5205" }, { - "$ref": "5206" + "$ref": "5208" }, { - "$ref": "5209" + "$ref": "5211" }, { - "$ref": "5212" + "$ref": "5214" }, { - "$ref": "5219" + "$ref": "5221" }, { - "$ref": "5228" + "$ref": "5230" }, { - "$ref": "5235" + "$ref": "5237" }, { - "$ref": "5242" + "$ref": "5244" }, { - "$ref": "5247" + "$ref": "5249" }, { - "$ref": "5254" + "$ref": "5256" }, { - "$ref": "5257" + "$ref": "5259" }, { - "$ref": "5262" + "$ref": "5264" }, { - "$ref": "5266" + "$ref": "5268" }, { - "$ref": "5274" + "$ref": "5276" }, { - "$ref": "5280" + "$ref": "5282" }, { - "$ref": "5285" + "$ref": "5287" }, { - "$ref": "5293" + "$ref": "5295" }, { - "$ref": "5301" + "$ref": "5303" }, { - "$ref": "5313" + "$ref": "5315" }, { - "$ref": "5319" + "$ref": "5321" }, { - "$ref": "5323" + "$ref": "5325" }, { - "$ref": "5329" + "$ref": "5331" }, { - "$id": "5336", + "$id": "5338", "kind": "model", "name": "ResponseStreamEvent", "namespace": "OpenAI", @@ -67764,7 +67790,7 @@ } ], "discriminatorProperty": { - "$id": "5337", + "$id": "5339", "kind": "property", "name": "type", "type": { @@ -67781,15 +67807,15 @@ }, "properties": [ { - "$ref": "5337" + "$ref": "5339" }, { - "$id": "5338", + "$id": "5340", "kind": "property", "name": "sequence_number", "doc": "The sequence number for this event.", "type": { - "$id": "5339", + "$id": "5341", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67807,7 +67833,7 @@ ], "discriminatedSubtypes": { "response.completed": { - "$id": "5340", + "$id": "5342", "kind": "model", "name": "ResponseCompletedEvent", "namespace": "OpenAI", @@ -67822,16 +67848,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5341", + "$id": "5343", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.completed`.", "type": { - "$id": "5342", + "$id": "5344", "kind": "enumvalue", "name": "response_completed", "value": "response.completed", @@ -67839,14 +67865,14 @@ "$ref": "774" }, "enumType": { - "$id": "5343", + "$id": "5345", "kind": "enum", "decorators": [], "name": "ResponseStreamEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5344", + "$id": "5346", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -67855,718 +67881,718 @@ }, "values": [ { - "$id": "5345", + "$id": "5347", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5346", + "$id": "5348", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5347", + "$id": "5349", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5348", + "$id": "5350", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5349", + "$id": "5351", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5350", + "$id": "5352", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5351", + "$id": "5353", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5352", + "$id": "5354", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5353", + "$id": "5355", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5354", + "$id": "5356", "kind": "enumvalue", "decorators": [], "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5355", + "$id": "5357", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5356", + "$id": "5358", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5357", + "$id": "5359", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5358", + "$id": "5360", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5359", + "$id": "5361", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5360", + "$id": "5362", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5361", + "$id": "5363", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5362", + "$id": "5364", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5363", + "$id": "5365", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5364", + "$id": "5366", "kind": "enumvalue", "decorators": [], "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5365", + "$id": "5367", "kind": "enumvalue", "decorators": [], "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5366", + "$id": "5368", "kind": "enumvalue", "decorators": [], "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5367", + "$id": "5369", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5368", + "$id": "5370", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5369", + "$id": "5371", "kind": "enumvalue", "decorators": [], "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5370", + "$id": "5372", "kind": "enumvalue", "decorators": [], "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5371", + "$id": "5373", "kind": "enumvalue", "decorators": [], "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5372", + "$id": "5374", "kind": "enumvalue", "decorators": [], "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5373", + "$id": "5375", "kind": "enumvalue", "decorators": [], "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5374", + "$id": "5376", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5375", + "$id": "5377", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5376", + "$id": "5378", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5377", + "$id": "5379", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5378", + "$id": "5380", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5379", + "$id": "5381", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5380", + "$id": "5382", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5381", + "$id": "5383", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5382", + "$id": "5384", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5383", + "$id": "5385", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5384", + "$id": "5386", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5385", + "$id": "5387", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5386", + "$id": "5388", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5387", + "$id": "5389", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5388", + "$id": "5390", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5389", + "$id": "5391", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5390", + "$id": "5392", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5391", + "$id": "5393", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5392", + "$id": "5394", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5393", + "$id": "5395", "kind": "enumvalue", "decorators": [], "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5394", + "$id": "5396", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5395", + "$id": "5397", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5396", + "$id": "5398", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5397", + "$id": "5399", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5398", + "$id": "5400", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } }, { - "$id": "5399", + "$id": "5401", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", "valueType": { - "$ref": "5344" + "$ref": "5346" }, "enumType": { - "$ref": "5343" + "$ref": "5345" } } ], @@ -68591,12 +68617,12 @@ "isHttpMetadata": false }, { - "$id": "5400", + "$id": "5402", "kind": "property", "name": "response", "doc": "Properties of the completed response.", "type": { - "$ref": "5151" + "$ref": "5153" }, "optional": false, "readOnly": false, @@ -68610,7 +68636,7 @@ ] }, "response.content_part.added": { - "$id": "5401", + "$id": "5403", "kind": "model", "name": "ResponseContentPartAddedEvent", "namespace": "OpenAI", @@ -68625,16 +68651,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5402", + "$id": "5404", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.content_part.added`.", "type": { - "$id": "5403", + "$id": "5405", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", @@ -68642,7 +68668,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -68656,12 +68682,12 @@ "isHttpMetadata": false }, { - "$id": "5404", + "$id": "5406", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5405", + "$id": "5407", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68677,12 +68703,12 @@ "isHttpMetadata": false }, { - "$id": "5406", + "$id": "5408", "kind": "property", "name": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5407", + "$id": "5409", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68698,12 +68724,12 @@ "isHttpMetadata": false }, { - "$id": "5408", + "$id": "5410", "kind": "property", "name": "content_index", "doc": "The index of the content part that was added.", "type": { - "$id": "5409", + "$id": "5411", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68719,7 +68745,7 @@ "isHttpMetadata": false }, { - "$id": "5410", + "$id": "5412", "kind": "property", "name": "part", "doc": "The content part that was added.", @@ -68738,7 +68764,7 @@ ] }, "response.content_part.done": { - "$id": "5411", + "$id": "5413", "kind": "model", "name": "ResponseContentPartDoneEvent", "namespace": "OpenAI", @@ -68753,16 +68779,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5412", + "$id": "5414", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.content_part.done`.", "type": { - "$id": "5413", + "$id": "5415", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", @@ -68770,7 +68796,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -68784,12 +68810,12 @@ "isHttpMetadata": false }, { - "$id": "5414", + "$id": "5416", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5415", + "$id": "5417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68805,12 +68831,12 @@ "isHttpMetadata": false }, { - "$id": "5416", + "$id": "5418", "kind": "property", "name": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5417", + "$id": "5419", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68826,12 +68852,12 @@ "isHttpMetadata": false }, { - "$id": "5418", + "$id": "5420", "kind": "property", "name": "content_index", "doc": "The index of the content part that is done.", "type": { - "$id": "5419", + "$id": "5421", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68847,7 +68873,7 @@ "isHttpMetadata": false }, { - "$id": "5420", + "$id": "5422", "kind": "property", "name": "part", "doc": "The content part that is done.", @@ -68866,7 +68892,7 @@ ] }, "response.created": { - "$id": "5421", + "$id": "5423", "kind": "model", "name": "ResponseCreatedEvent", "namespace": "OpenAI", @@ -68881,16 +68907,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5422", + "$id": "5424", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.created`.", "type": { - "$id": "5423", + "$id": "5425", "kind": "enumvalue", "name": "response_created", "value": "response.created", @@ -68898,7 +68924,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -68912,12 +68938,12 @@ "isHttpMetadata": false }, { - "$id": "5424", + "$id": "5426", "kind": "property", "name": "response", "doc": "The response that was created.", "type": { - "$ref": "5151" + "$ref": "5153" }, "optional": false, "readOnly": false, @@ -68931,7 +68957,7 @@ ] }, "error": { - "$id": "5425", + "$id": "5427", "kind": "model", "name": "ResponseErrorEvent", "namespace": "OpenAI", @@ -68946,16 +68972,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5426", + "$id": "5428", "kind": "property", "name": "type", "doc": "The type of the event. Always `error`.", "type": { - "$id": "5427", + "$id": "5429", "kind": "enumvalue", "name": "error", "value": "error", @@ -68963,7 +68989,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -68977,15 +69003,15 @@ "isHttpMetadata": false }, { - "$id": "5428", + "$id": "5430", "kind": "property", "name": "code", "doc": "The error code.", "type": { - "$id": "5429", + "$id": "5431", "kind": "nullable", "type": { - "$id": "5430", + "$id": "5432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69003,12 +69029,12 @@ "isHttpMetadata": false }, { - "$id": "5431", + "$id": "5433", "kind": "property", "name": "message", "doc": "The error message.", "type": { - "$id": "5432", + "$id": "5434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69024,15 +69050,15 @@ "isHttpMetadata": false }, { - "$id": "5433", + "$id": "5435", "kind": "property", "name": "param", "doc": "The error parameter.", "type": { - "$id": "5434", + "$id": "5436", "kind": "nullable", "type": { - "$id": "5435", + "$id": "5437", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69052,7 +69078,7 @@ ] }, "response.file_search_call.completed": { - "$id": "5436", + "$id": "5438", "kind": "model", "name": "ResponseFileSearchCallCompletedEvent", "namespace": "OpenAI", @@ -69067,16 +69093,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5437", + "$id": "5439", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.completed`.", "type": { - "$id": "5438", + "$id": "5440", "kind": "enumvalue", "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", @@ -69084,7 +69110,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69098,12 +69124,12 @@ "isHttpMetadata": false }, { - "$id": "5439", + "$id": "5441", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5440", + "$id": "5442", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69119,12 +69145,12 @@ "isHttpMetadata": false }, { - "$id": "5441", + "$id": "5443", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5442", + "$id": "5444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69142,7 +69168,7 @@ ] }, "response.file_search_call.in_progress": { - "$id": "5443", + "$id": "5445", "kind": "model", "name": "ResponseFileSearchCallInProgressEvent", "namespace": "OpenAI", @@ -69157,16 +69183,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5444", + "$id": "5446", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.in_progress`.", "type": { - "$id": "5445", + "$id": "5447", "kind": "enumvalue", "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", @@ -69174,7 +69200,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69188,12 +69214,12 @@ "isHttpMetadata": false }, { - "$id": "5446", + "$id": "5448", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5447", + "$id": "5449", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69209,12 +69235,12 @@ "isHttpMetadata": false }, { - "$id": "5448", + "$id": "5450", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5449", + "$id": "5451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69232,7 +69258,7 @@ ] }, "response.file_search_call.searching": { - "$id": "5450", + "$id": "5452", "kind": "model", "name": "ResponseFileSearchCallSearchingEvent", "namespace": "OpenAI", @@ -69247,16 +69273,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5451", + "$id": "5453", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.searching`.", "type": { - "$id": "5452", + "$id": "5454", "kind": "enumvalue", "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", @@ -69264,7 +69290,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69278,12 +69304,12 @@ "isHttpMetadata": false }, { - "$id": "5453", + "$id": "5455", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is searching.", "type": { - "$id": "5454", + "$id": "5456", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69299,12 +69325,12 @@ "isHttpMetadata": false }, { - "$id": "5455", + "$id": "5457", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5456", + "$id": "5458", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69322,7 +69348,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "5457", + "$id": "5459", "kind": "model", "name": "ResponseFunctionCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -69337,16 +69363,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5458", + "$id": "5460", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.function_call_arguments.delta`.", "type": { - "$id": "5459", + "$id": "5461", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", @@ -69354,7 +69380,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69368,12 +69394,12 @@ "isHttpMetadata": false }, { - "$id": "5460", + "$id": "5462", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5461", + "$id": "5463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69389,12 +69415,12 @@ "isHttpMetadata": false }, { - "$id": "5462", + "$id": "5464", "kind": "property", "name": "output_index", "doc": "The index of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5463", + "$id": "5465", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69410,12 +69436,12 @@ "isHttpMetadata": false }, { - "$id": "5464", + "$id": "5466", "kind": "property", "name": "delta", "doc": "The function-call arguments delta that is added.", "type": { - "$id": "5465", + "$id": "5467", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -69433,7 +69459,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "5466", + "$id": "5468", "kind": "model", "name": "ResponseFunctionCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -69448,15 +69474,15 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5467", + "$id": "5469", "kind": "property", "name": "type", "type": { - "$id": "5468", + "$id": "5470", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", @@ -69464,7 +69490,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69478,12 +69504,12 @@ "isHttpMetadata": false }, { - "$id": "5469", + "$id": "5471", "kind": "property", "name": "item_id", "doc": "The ID of the item.", "type": { - "$id": "5470", + "$id": "5472", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69499,12 +69525,12 @@ "isHttpMetadata": false }, { - "$id": "5471", + "$id": "5473", "kind": "property", "name": "output_index", "doc": "The index of the output item.", "type": { - "$id": "5472", + "$id": "5474", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69520,12 +69546,12 @@ "isHttpMetadata": false }, { - "$id": "5473", + "$id": "5475", "kind": "property", "name": "arguments", "doc": "The function-call arguments.", "type": { - "$id": "5474", + "$id": "5476", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -69543,7 +69569,7 @@ ] }, "response.in_progress": { - "$id": "5475", + "$id": "5477", "kind": "model", "name": "ResponseInProgressEvent", "namespace": "OpenAI", @@ -69558,16 +69584,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5476", + "$id": "5478", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.in_progress`.", "type": { - "$id": "5477", + "$id": "5479", "kind": "enumvalue", "name": "response_in_progress", "value": "response.in_progress", @@ -69575,7 +69601,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69589,12 +69615,12 @@ "isHttpMetadata": false }, { - "$id": "5478", + "$id": "5480", "kind": "property", "name": "response", "doc": "The response that is in progress.", "type": { - "$ref": "5151" + "$ref": "5153" }, "optional": false, "readOnly": false, @@ -69608,7 +69634,7 @@ ] }, "response.failed": { - "$id": "5479", + "$id": "5481", "kind": "model", "name": "ResponseFailedEvent", "namespace": "OpenAI", @@ -69623,16 +69649,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5480", + "$id": "5482", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.failed`.", "type": { - "$id": "5481", + "$id": "5483", "kind": "enumvalue", "name": "response_failed", "value": "response.failed", @@ -69640,7 +69666,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69654,12 +69680,12 @@ "isHttpMetadata": false }, { - "$id": "5482", + "$id": "5484", "kind": "property", "name": "response", "doc": "The response that failed.", "type": { - "$ref": "5151" + "$ref": "5153" }, "optional": false, "readOnly": false, @@ -69673,7 +69699,7 @@ ] }, "response.incomplete": { - "$id": "5483", + "$id": "5485", "kind": "model", "name": "ResponseIncompleteEvent", "namespace": "OpenAI", @@ -69688,16 +69714,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5484", + "$id": "5486", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.incomplete`.", "type": { - "$id": "5485", + "$id": "5487", "kind": "enumvalue", "name": "response_incomplete", "value": "response.incomplete", @@ -69705,7 +69731,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69719,12 +69745,12 @@ "isHttpMetadata": false }, { - "$id": "5486", + "$id": "5488", "kind": "property", "name": "response", "doc": "The response that was incomplete.", "type": { - "$ref": "5151" + "$ref": "5153" }, "optional": false, "readOnly": false, @@ -69738,7 +69764,7 @@ ] }, "response.output_item.added": { - "$id": "5487", + "$id": "5489", "kind": "model", "name": "ResponseOutputItemAddedEvent", "namespace": "OpenAI", @@ -69753,16 +69779,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5488", + "$id": "5490", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_item.added`.", "type": { - "$id": "5489", + "$id": "5491", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", @@ -69770,7 +69796,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69784,12 +69810,12 @@ "isHttpMetadata": false }, { - "$id": "5490", + "$id": "5492", "kind": "property", "name": "output_index", "doc": "The index of the output item that was added.", "type": { - "$id": "5491", + "$id": "5493", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69805,12 +69831,12 @@ "isHttpMetadata": false }, { - "$id": "5492", + "$id": "5494", "kind": "property", "name": "item", "doc": "The output item that was added.", "type": { - "$ref": "5192" + "$ref": "5194" }, "optional": false, "readOnly": false, @@ -69824,7 +69850,7 @@ ] }, "response.output_item.done": { - "$id": "5493", + "$id": "5495", "kind": "model", "name": "ResponseOutputItemDoneEvent", "namespace": "OpenAI", @@ -69839,16 +69865,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5494", + "$id": "5496", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_item.done`.", "type": { - "$id": "5495", + "$id": "5497", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", @@ -69856,7 +69882,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69870,12 +69896,12 @@ "isHttpMetadata": false }, { - "$id": "5496", + "$id": "5498", "kind": "property", "name": "output_index", "doc": "The index of the output item that was marked done.", "type": { - "$id": "5497", + "$id": "5499", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69891,12 +69917,12 @@ "isHttpMetadata": false }, { - "$id": "5498", + "$id": "5500", "kind": "property", "name": "item", "doc": "The output item that was marked done.", "type": { - "$ref": "5192" + "$ref": "5194" }, "optional": false, "readOnly": false, @@ -69910,7 +69936,7 @@ ] }, "response.refusal.delta": { - "$id": "5499", + "$id": "5501", "kind": "model", "name": "ResponseRefusalDeltaEvent", "namespace": "OpenAI", @@ -69925,16 +69951,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5500", + "$id": "5502", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.refusal.delta`.", "type": { - "$id": "5501", + "$id": "5503", "kind": "enumvalue", "name": "response_refusal_delta", "value": "response.refusal.delta", @@ -69942,7 +69968,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -69956,12 +69982,12 @@ "isHttpMetadata": false }, { - "$id": "5502", + "$id": "5504", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the refusal text is added to.", "type": { - "$id": "5503", + "$id": "5505", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69977,12 +70003,12 @@ "isHttpMetadata": false }, { - "$id": "5504", + "$id": "5506", "kind": "property", "name": "output_index", "doc": "The index of the output item that the refusal text is added to.", "type": { - "$id": "5505", + "$id": "5507", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69998,12 +70024,12 @@ "isHttpMetadata": false }, { - "$id": "5506", + "$id": "5508", "kind": "property", "name": "content_index", "doc": "The index of the content part that the refusal text is added to.", "type": { - "$id": "5507", + "$id": "5509", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70019,12 +70045,12 @@ "isHttpMetadata": false }, { - "$id": "5508", + "$id": "5510", "kind": "property", "name": "delta", "doc": "The refusal text that is added.", "type": { - "$id": "5509", + "$id": "5511", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70042,7 +70068,7 @@ ] }, "response.refusal.done": { - "$id": "5510", + "$id": "5512", "kind": "model", "name": "ResponseRefusalDoneEvent", "namespace": "OpenAI", @@ -70057,16 +70083,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5511", + "$id": "5513", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.refusal.done`.", "type": { - "$id": "5512", + "$id": "5514", "kind": "enumvalue", "name": "response_refusal_done", "value": "response.refusal.done", @@ -70074,7 +70100,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -70088,12 +70114,12 @@ "isHttpMetadata": false }, { - "$id": "5513", + "$id": "5515", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the refusal text is finalized.", "type": { - "$id": "5514", + "$id": "5516", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70109,12 +70135,12 @@ "isHttpMetadata": false }, { - "$id": "5515", + "$id": "5517", "kind": "property", "name": "output_index", "doc": "The index of the output item that the refusal text is finalized.", "type": { - "$id": "5516", + "$id": "5518", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70130,12 +70156,12 @@ "isHttpMetadata": false }, { - "$id": "5517", + "$id": "5519", "kind": "property", "name": "content_index", "doc": "The index of the content part that the refusal text is finalized.", "type": { - "$id": "5518", + "$id": "5520", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70151,12 +70177,12 @@ "isHttpMetadata": false }, { - "$id": "5519", + "$id": "5521", "kind": "property", "name": "refusal", "doc": "The refusal text that is finalized.", "type": { - "$id": "5520", + "$id": "5522", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70174,7 +70200,7 @@ ] }, "response.output_text.delta": { - "$id": "5521", + "$id": "5523", "kind": "model", "name": "ResponseTextDeltaEvent", "namespace": "OpenAI", @@ -70189,16 +70215,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5522", + "$id": "5524", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_text.delta`.", "type": { - "$id": "5523", + "$id": "5525", "kind": "enumvalue", "name": "response_output_text_delta", "value": "response.output_text.delta", @@ -70206,7 +70232,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -70220,12 +70246,12 @@ "isHttpMetadata": false }, { - "$id": "5524", + "$id": "5526", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the text delta was added to.", "type": { - "$id": "5525", + "$id": "5527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70241,12 +70267,12 @@ "isHttpMetadata": false }, { - "$id": "5526", + "$id": "5528", "kind": "property", "name": "output_index", "doc": "The index of the output item that the text delta was added to.", "type": { - "$id": "5527", + "$id": "5529", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70262,12 +70288,12 @@ "isHttpMetadata": false }, { - "$id": "5528", + "$id": "5530", "kind": "property", "name": "content_index", "doc": "The index of the content part that the text delta was added to.", "type": { - "$id": "5529", + "$id": "5531", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70283,12 +70309,12 @@ "isHttpMetadata": false }, { - "$id": "5530", + "$id": "5532", "kind": "property", "name": "delta", "doc": "The text delta that was added.", "type": { - "$id": "5531", + "$id": "5533", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70306,7 +70332,7 @@ ] }, "response.output_text.done": { - "$id": "5532", + "$id": "5534", "kind": "model", "name": "ResponseTextDoneEvent", "namespace": "OpenAI", @@ -70321,16 +70347,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5533", + "$id": "5535", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_text.done`.", "type": { - "$id": "5534", + "$id": "5536", "kind": "enumvalue", "name": "response_output_text_done", "value": "response.output_text.done", @@ -70338,7 +70364,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -70352,12 +70378,12 @@ "isHttpMetadata": false }, { - "$id": "5535", + "$id": "5537", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the text content is finalized.", "type": { - "$id": "5536", + "$id": "5538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70373,12 +70399,12 @@ "isHttpMetadata": false }, { - "$id": "5537", + "$id": "5539", "kind": "property", "name": "output_index", "doc": "The index of the output item that the text content is finalized.", "type": { - "$id": "5538", + "$id": "5540", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70394,12 +70420,12 @@ "isHttpMetadata": false }, { - "$id": "5539", + "$id": "5541", "kind": "property", "name": "content_index", "doc": "The index of the content part that the text content is finalized.", "type": { - "$id": "5540", + "$id": "5542", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70415,12 +70441,12 @@ "isHttpMetadata": false }, { - "$id": "5541", + "$id": "5543", "kind": "property", "name": "text", "doc": "The text content that is finalized.", "type": { - "$id": "5542", + "$id": "5544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70438,7 +70464,7 @@ ] }, "response.reasoning_summary_part.added": { - "$id": "5543", + "$id": "5545", "kind": "model", "name": "ResponseReasoningSummaryPartAddedEvent", "namespace": "OpenAI", @@ -70453,16 +70479,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5544", + "$id": "5546", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.added`.", "type": { - "$id": "5545", + "$id": "5547", "kind": "enumvalue", "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", @@ -70470,7 +70496,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -70484,12 +70510,12 @@ "isHttpMetadata": false }, { - "$id": "5546", + "$id": "5548", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5547", + "$id": "5549", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70505,12 +70531,12 @@ "isHttpMetadata": false }, { - "$id": "5548", + "$id": "5550", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5549", + "$id": "5551", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70526,12 +70552,12 @@ "isHttpMetadata": false }, { - "$id": "5550", + "$id": "5552", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5551", + "$id": "5553", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70547,12 +70573,12 @@ "isHttpMetadata": false }, { - "$id": "5552", + "$id": "5554", "kind": "property", "name": "part", "doc": "The summary part that was added.", "type": { - "$ref": "5014" + "$ref": "5016" }, "optional": false, "readOnly": false, @@ -70566,7 +70592,7 @@ ] }, "response.reasoning_summary_part.done": { - "$id": "5553", + "$id": "5555", "kind": "model", "name": "ResponseReasoningSummaryPartDoneEvent", "namespace": "OpenAI", @@ -70581,16 +70607,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5554", + "$id": "5556", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.done`.", "type": { - "$id": "5555", + "$id": "5557", "kind": "enumvalue", "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", @@ -70598,7 +70624,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -70612,12 +70638,12 @@ "isHttpMetadata": false }, { - "$id": "5556", + "$id": "5558", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5557", + "$id": "5559", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70633,12 +70659,12 @@ "isHttpMetadata": false }, { - "$id": "5558", + "$id": "5560", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5559", + "$id": "5561", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70654,12 +70680,12 @@ "isHttpMetadata": false }, { - "$id": "5560", + "$id": "5562", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5561", + "$id": "5563", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70675,12 +70701,12 @@ "isHttpMetadata": false }, { - "$id": "5562", + "$id": "5564", "kind": "property", "name": "part", "doc": "The completed summary part.", "type": { - "$ref": "5014" + "$ref": "5016" }, "optional": false, "readOnly": false, @@ -70694,7 +70720,7 @@ ] }, "response.reasoning_summary_text.delta": { - "$id": "5563", + "$id": "5565", "kind": "model", "name": "ResponseReasoningSummaryTextDeltaEvent", "namespace": "OpenAI", @@ -70709,16 +70735,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5564", + "$id": "5566", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.delta`.", "type": { - "$id": "5565", + "$id": "5567", "kind": "enumvalue", "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", @@ -70726,7 +70752,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -70740,12 +70766,12 @@ "isHttpMetadata": false }, { - "$id": "5566", + "$id": "5568", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary text delta is associated with.", "type": { - "$id": "5567", + "$id": "5569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70761,12 +70787,12 @@ "isHttpMetadata": false }, { - "$id": "5568", + "$id": "5570", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary text delta is associated with.", "type": { - "$id": "5569", + "$id": "5571", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70782,12 +70808,12 @@ "isHttpMetadata": false }, { - "$id": "5570", + "$id": "5572", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5571", + "$id": "5573", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70803,12 +70829,12 @@ "isHttpMetadata": false }, { - "$id": "5572", + "$id": "5574", "kind": "property", "name": "delta", "doc": "The text delta that was added to the summary.", "type": { - "$id": "5573", + "$id": "5575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70826,7 +70852,7 @@ ] }, "response.reasoning_summary_text.done": { - "$id": "5574", + "$id": "5576", "kind": "model", "name": "ResponseReasoningSummaryTextDoneEvent", "namespace": "OpenAI", @@ -70841,16 +70867,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5575", + "$id": "5577", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.done`.", "type": { - "$id": "5576", + "$id": "5578", "kind": "enumvalue", "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", @@ -70858,7 +70884,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -70872,12 +70898,12 @@ "isHttpMetadata": false }, { - "$id": "5577", + "$id": "5579", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary text is associated with.", "type": { - "$id": "5578", + "$id": "5580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70893,12 +70919,12 @@ "isHttpMetadata": false }, { - "$id": "5579", + "$id": "5581", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary text is associated with.", "type": { - "$id": "5580", + "$id": "5582", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70914,12 +70940,12 @@ "isHttpMetadata": false }, { - "$id": "5581", + "$id": "5583", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5582", + "$id": "5584", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70935,12 +70961,12 @@ "isHttpMetadata": false }, { - "$id": "5583", + "$id": "5585", "kind": "property", "name": "text", "doc": "The full text of the completed reasoning summary.", "type": { - "$id": "5584", + "$id": "5586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70958,7 +70984,7 @@ ] }, "response.reasoning_text.delta": { - "$id": "5585", + "$id": "5587", "kind": "model", "name": "ResponseReasoningTextDeltaEvent", "namespace": "OpenAI", @@ -70968,16 +70994,16 @@ "discriminatorValue": "response.reasoning_text.delta", "decorators": [], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5586", + "$id": "5588", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_text.delta`.", "type": { - "$id": "5587", + "$id": "5589", "kind": "enumvalue", "name": "response_reasoning_text_delta", "value": "response.reasoning_text.delta", @@ -70985,7 +71011,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -70999,12 +71025,12 @@ "isHttpMetadata": false }, { - "$id": "5588", + "$id": "5590", "kind": "property", "name": "item_id", "doc": "The ID of the item this reasoning text delta is associated with.", "type": { - "$id": "5589", + "$id": "5591", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71020,12 +71046,12 @@ "isHttpMetadata": false }, { - "$id": "5590", + "$id": "5592", "kind": "property", "name": "output_index", "doc": "The index of the output item this reasoning text delta is associated with.", "type": { - "$id": "5591", + "$id": "5593", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71041,12 +71067,12 @@ "isHttpMetadata": false }, { - "$id": "5592", + "$id": "5594", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part this delta is associated with.", "type": { - "$id": "5593", + "$id": "5595", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71062,12 +71088,12 @@ "isHttpMetadata": false }, { - "$id": "5594", + "$id": "5596", "kind": "property", "name": "delta", "doc": "The text delta that was added to the reasoning content.", "type": { - "$id": "5595", + "$id": "5597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71085,7 +71111,7 @@ ] }, "response.reasoning_text.done": { - "$id": "5596", + "$id": "5598", "kind": "model", "name": "ResponseReasoningTextDoneEvent", "namespace": "OpenAI", @@ -71095,16 +71121,16 @@ "discriminatorValue": "response.reasoning_text.done", "decorators": [], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5597", + "$id": "5599", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_text.done`.", "type": { - "$id": "5598", + "$id": "5600", "kind": "enumvalue", "name": "response_reasoning_text_done", "value": "response.reasoning_text.done", @@ -71112,7 +71138,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71126,12 +71152,12 @@ "isHttpMetadata": false }, { - "$id": "5599", + "$id": "5601", "kind": "property", "name": "item_id", "doc": "The ID of the item this reasoning text is associated with.", "type": { - "$id": "5600", + "$id": "5602", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71147,12 +71173,12 @@ "isHttpMetadata": false }, { - "$id": "5601", + "$id": "5603", "kind": "property", "name": "output_index", "doc": "The index of the output item this reasoning text is associated with.", "type": { - "$id": "5602", + "$id": "5604", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71168,12 +71194,12 @@ "isHttpMetadata": false }, { - "$id": "5603", + "$id": "5605", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part.", "type": { - "$id": "5604", + "$id": "5606", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71189,12 +71215,12 @@ "isHttpMetadata": false }, { - "$id": "5605", + "$id": "5607", "kind": "property", "name": "text", "doc": "The full text of the completed reasoning content.", "type": { - "$id": "5606", + "$id": "5608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71212,7 +71238,7 @@ ] }, "response.web_search_call.completed": { - "$id": "5607", + "$id": "5609", "kind": "model", "name": "ResponseWebSearchCallCompletedEvent", "namespace": "OpenAI", @@ -71227,16 +71253,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5608", + "$id": "5610", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.completed`.", "type": { - "$id": "5609", + "$id": "5611", "kind": "enumvalue", "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", @@ -71244,7 +71270,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71258,12 +71284,12 @@ "isHttpMetadata": false }, { - "$id": "5610", + "$id": "5612", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5611", + "$id": "5613", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71279,12 +71305,12 @@ "isHttpMetadata": false }, { - "$id": "5612", + "$id": "5614", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5613", + "$id": "5615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71302,7 +71328,7 @@ ] }, "response.web_search_call.in_progress": { - "$id": "5614", + "$id": "5616", "kind": "model", "name": "ResponseWebSearchCallInProgressEvent", "namespace": "OpenAI", @@ -71317,16 +71343,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5615", + "$id": "5617", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.in_progress`.", "type": { - "$id": "5616", + "$id": "5618", "kind": "enumvalue", "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", @@ -71334,7 +71360,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71348,12 +71374,12 @@ "isHttpMetadata": false }, { - "$id": "5617", + "$id": "5619", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5618", + "$id": "5620", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71369,12 +71395,12 @@ "isHttpMetadata": false }, { - "$id": "5619", + "$id": "5621", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5620", + "$id": "5622", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71392,7 +71418,7 @@ ] }, "response.web_search_call.searching": { - "$id": "5621", + "$id": "5623", "kind": "model", "name": "ResponseWebSearchCallSearchingEvent", "namespace": "OpenAI", @@ -71407,16 +71433,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5622", + "$id": "5624", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.searching`.", "type": { - "$id": "5623", + "$id": "5625", "kind": "enumvalue", "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", @@ -71424,7 +71450,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71438,12 +71464,12 @@ "isHttpMetadata": false }, { - "$id": "5624", + "$id": "5626", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5625", + "$id": "5627", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71459,12 +71485,12 @@ "isHttpMetadata": false }, { - "$id": "5626", + "$id": "5628", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5627", + "$id": "5629", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71482,7 +71508,7 @@ ] }, "response.image_generation_call.completed": { - "$id": "5628", + "$id": "5630", "kind": "model", "name": "ResponseImageGenCallCompletedEvent", "namespace": "OpenAI", @@ -71497,16 +71523,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5629", + "$id": "5631", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.completed'.", "type": { - "$id": "5630", + "$id": "5632", "kind": "enumvalue", "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", @@ -71514,7 +71540,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71528,12 +71554,12 @@ "isHttpMetadata": false }, { - "$id": "5631", + "$id": "5633", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5632", + "$id": "5634", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71549,12 +71575,12 @@ "isHttpMetadata": false }, { - "$id": "5633", + "$id": "5635", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5634", + "$id": "5636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71572,7 +71598,7 @@ ] }, "response.image_generation_call.generating": { - "$id": "5635", + "$id": "5637", "kind": "model", "name": "ResponseImageGenCallGeneratingEvent", "namespace": "OpenAI", @@ -71587,16 +71613,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5636", + "$id": "5638", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.generating'.", "type": { - "$id": "5637", + "$id": "5639", "kind": "enumvalue", "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", @@ -71604,7 +71630,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71618,12 +71644,12 @@ "isHttpMetadata": false }, { - "$id": "5638", + "$id": "5640", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5639", + "$id": "5641", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71639,12 +71665,12 @@ "isHttpMetadata": false }, { - "$id": "5640", + "$id": "5642", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5641", + "$id": "5643", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71662,7 +71688,7 @@ ] }, "response.image_generation_call.in_progress": { - "$id": "5642", + "$id": "5644", "kind": "model", "name": "ResponseImageGenCallInProgressEvent", "namespace": "OpenAI", @@ -71677,16 +71703,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5643", + "$id": "5645", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.in_progress'.", "type": { - "$id": "5644", + "$id": "5646", "kind": "enumvalue", "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", @@ -71694,7 +71720,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71708,12 +71734,12 @@ "isHttpMetadata": false }, { - "$id": "5645", + "$id": "5647", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5646", + "$id": "5648", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71729,12 +71755,12 @@ "isHttpMetadata": false }, { - "$id": "5647", + "$id": "5649", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5648", + "$id": "5650", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71752,7 +71778,7 @@ ] }, "response.image_generation_call.partial_image": { - "$id": "5649", + "$id": "5651", "kind": "model", "name": "ResponseImageGenCallPartialImageEvent", "namespace": "OpenAI", @@ -71767,16 +71793,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5650", + "$id": "5652", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.partial_image'.", "type": { - "$id": "5651", + "$id": "5653", "kind": "enumvalue", "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", @@ -71784,7 +71810,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71798,12 +71824,12 @@ "isHttpMetadata": false }, { - "$id": "5652", + "$id": "5654", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5653", + "$id": "5655", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71819,12 +71845,12 @@ "isHttpMetadata": false }, { - "$id": "5654", + "$id": "5656", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5655", + "$id": "5657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71840,12 +71866,12 @@ "isHttpMetadata": false }, { - "$id": "5656", + "$id": "5658", "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": "5657", + "$id": "5659", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71861,12 +71887,12 @@ "isHttpMetadata": false }, { - "$id": "5658", + "$id": "5660", "kind": "property", "name": "PartialImageBytes", "doc": "Base64-encoded partial image data, suitable for rendering as an image.", "type": { - "$id": "5659", + "$id": "5661", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -71885,7 +71911,7 @@ ] }, "response.mcp_call_arguments.delta": { - "$id": "5660", + "$id": "5662", "kind": "model", "name": "ResponseMCPCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -71900,16 +71926,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5661", + "$id": "5663", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_delta'.", "type": { - "$id": "5662", + "$id": "5664", "kind": "enumvalue", "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", @@ -71917,7 +71943,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -71931,12 +71957,12 @@ "isHttpMetadata": false }, { - "$id": "5663", + "$id": "5665", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5664", + "$id": "5666", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71952,12 +71978,12 @@ "isHttpMetadata": false }, { - "$id": "5665", + "$id": "5667", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5666", + "$id": "5668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71973,12 +71999,12 @@ "isHttpMetadata": false }, { - "$id": "5667", + "$id": "5669", "kind": "property", "name": "delta", "doc": "The partial update to the arguments for the MCP tool call.", "type": { - "$id": "5668", + "$id": "5670", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -71996,7 +72022,7 @@ ] }, "response.mcp_call_arguments.done": { - "$id": "5669", + "$id": "5671", "kind": "model", "name": "ResponseMCPCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -72011,16 +72037,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5670", + "$id": "5672", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_done'.", "type": { - "$id": "5671", + "$id": "5673", "kind": "enumvalue", "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", @@ -72028,7 +72054,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72042,12 +72068,12 @@ "isHttpMetadata": false }, { - "$id": "5672", + "$id": "5674", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5673", + "$id": "5675", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72063,12 +72089,12 @@ "isHttpMetadata": false }, { - "$id": "5674", + "$id": "5676", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5675", + "$id": "5677", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72084,12 +72110,12 @@ "isHttpMetadata": false }, { - "$id": "5676", + "$id": "5678", "kind": "property", "name": "arguments", "doc": "A JSON string containing the finalized arguments for the MCP tool call.", "type": { - "$id": "5677", + "$id": "5679", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72107,7 +72133,7 @@ ] }, "response.mcp_call.completed": { - "$id": "5678", + "$id": "5680", "kind": "model", "name": "ResponseMCPCallCompletedEvent", "namespace": "OpenAI", @@ -72122,16 +72148,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5679", + "$id": "5681", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.completed'.", "type": { - "$id": "5680", + "$id": "5682", "kind": "enumvalue", "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", @@ -72139,7 +72165,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72153,12 +72179,12 @@ "isHttpMetadata": false }, { - "$id": "5681", + "$id": "5683", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that completed.", "type": { - "$id": "5682", + "$id": "5684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72174,12 +72200,12 @@ "isHttpMetadata": false }, { - "$id": "5683", + "$id": "5685", "kind": "property", "name": "output_index", "doc": "The index of the output item that completed.", "type": { - "$id": "5684", + "$id": "5686", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72197,7 +72223,7 @@ ] }, "response.mcp_call.failed": { - "$id": "5685", + "$id": "5687", "kind": "model", "name": "ResponseMCPCallFailedEvent", "namespace": "OpenAI", @@ -72212,16 +72238,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5686", + "$id": "5688", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.failed'.", "type": { - "$id": "5687", + "$id": "5689", "kind": "enumvalue", "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", @@ -72229,7 +72255,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72243,12 +72269,12 @@ "isHttpMetadata": false }, { - "$id": "5688", + "$id": "5690", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5689", + "$id": "5691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72264,12 +72290,12 @@ "isHttpMetadata": false }, { - "$id": "5690", + "$id": "5692", "kind": "property", "name": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5691", + "$id": "5693", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72287,7 +72313,7 @@ ] }, "response.mcp_call.in_progress": { - "$id": "5692", + "$id": "5694", "kind": "model", "name": "ResponseMCPCallInProgressEvent", "namespace": "OpenAI", @@ -72302,16 +72328,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5693", + "$id": "5695", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.in_progress'.", "type": { - "$id": "5694", + "$id": "5696", "kind": "enumvalue", "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", @@ -72319,7 +72345,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72333,12 +72359,12 @@ "isHttpMetadata": false }, { - "$id": "5695", + "$id": "5697", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5696", + "$id": "5698", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72354,12 +72380,12 @@ "isHttpMetadata": false }, { - "$id": "5697", + "$id": "5699", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5698", + "$id": "5700", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72377,7 +72403,7 @@ ] }, "response.mcp_list_tools.completed": { - "$id": "5699", + "$id": "5701", "kind": "model", "name": "ResponseMCPListToolsCompletedEvent", "namespace": "OpenAI", @@ -72392,16 +72418,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5700", + "$id": "5702", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.completed'.", "type": { - "$id": "5701", + "$id": "5703", "kind": "enumvalue", "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", @@ -72409,7 +72435,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72423,12 +72449,12 @@ "isHttpMetadata": false }, { - "$id": "5702", + "$id": "5704", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that produced this output.", "type": { - "$id": "5703", + "$id": "5705", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72444,12 +72470,12 @@ "isHttpMetadata": false }, { - "$id": "5704", + "$id": "5706", "kind": "property", "name": "output_index", "doc": "The index of the output item that was processed.", "type": { - "$id": "5705", + "$id": "5707", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72467,7 +72493,7 @@ ] }, "response.mcp_list_tools.failed": { - "$id": "5706", + "$id": "5708", "kind": "model", "name": "ResponseMCPListToolsFailedEvent", "namespace": "OpenAI", @@ -72482,16 +72508,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5707", + "$id": "5709", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.failed'.", "type": { - "$id": "5708", + "$id": "5710", "kind": "enumvalue", "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", @@ -72499,7 +72525,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72513,12 +72539,12 @@ "isHttpMetadata": false }, { - "$id": "5709", + "$id": "5711", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5710", + "$id": "5712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72534,12 +72560,12 @@ "isHttpMetadata": false }, { - "$id": "5711", + "$id": "5713", "kind": "property", "name": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5712", + "$id": "5714", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72557,7 +72583,7 @@ ] }, "response.mcp_list_tools.in_progress": { - "$id": "5713", + "$id": "5715", "kind": "model", "name": "ResponseMCPListToolsInProgressEvent", "namespace": "OpenAI", @@ -72572,16 +72598,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5714", + "$id": "5716", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.in_progress'.", "type": { - "$id": "5715", + "$id": "5717", "kind": "enumvalue", "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", @@ -72589,7 +72615,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72603,12 +72629,12 @@ "isHttpMetadata": false }, { - "$id": "5716", + "$id": "5718", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that is being processed.", "type": { - "$id": "5717", + "$id": "5719", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72624,12 +72650,12 @@ "isHttpMetadata": false }, { - "$id": "5718", + "$id": "5720", "kind": "property", "name": "output_index", "doc": "The index of the output item that is being processed.", "type": { - "$id": "5719", + "$id": "5721", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72647,7 +72673,7 @@ ] }, "response.output_text.annotation.added": { - "$id": "5720", + "$id": "5722", "kind": "model", "name": "ResponseOutputTextAnnotationAddedEvent", "namespace": "OpenAI", @@ -72662,16 +72688,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5721", + "$id": "5723", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.output_text_annotation.added'.", "type": { - "$id": "5722", + "$id": "5724", "kind": "enumvalue", "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", @@ -72679,7 +72705,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72693,12 +72719,12 @@ "isHttpMetadata": false }, { - "$id": "5723", + "$id": "5725", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item to which the annotation is being added.", "type": { - "$id": "5724", + "$id": "5726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72714,12 +72740,12 @@ "isHttpMetadata": false }, { - "$id": "5725", + "$id": "5727", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5726", + "$id": "5728", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72735,12 +72761,12 @@ "isHttpMetadata": false }, { - "$id": "5727", + "$id": "5729", "kind": "property", "name": "content_index", "doc": "The index of the content part within the output item.", "type": { - "$id": "5728", + "$id": "5730", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72756,12 +72782,12 @@ "isHttpMetadata": false }, { - "$id": "5729", + "$id": "5731", "kind": "property", "name": "annotation_index", "doc": "The index of the annotation within the content part.", "type": { - "$id": "5730", + "$id": "5732", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72777,12 +72803,12 @@ "isHttpMetadata": false }, { - "$id": "5731", + "$id": "5733", "kind": "property", "name": "annotation", "doc": "The annotation object being added. (See annotation schema for details.)", "type": { - "$id": "5732", + "$id": "5734", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72800,7 +72826,7 @@ ] }, "response.queued": { - "$id": "5733", + "$id": "5735", "kind": "model", "name": "ResponseQueuedEvent", "namespace": "OpenAI", @@ -72815,16 +72841,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5734", + "$id": "5736", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.queued'.", "type": { - "$id": "5735", + "$id": "5737", "kind": "enumvalue", "name": "response_queued", "value": "response.queued", @@ -72832,7 +72858,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72846,12 +72872,12 @@ "isHttpMetadata": false }, { - "$id": "5736", + "$id": "5738", "kind": "property", "name": "response", "doc": "The full response object that is queued.", "type": { - "$ref": "5151" + "$ref": "5153" }, "optional": false, "readOnly": false, @@ -72865,7 +72891,7 @@ ] }, "response.reasoning.delta": { - "$id": "5737", + "$id": "5739", "kind": "model", "name": "ResponseReasoningDeltaEvent", "namespace": "OpenAI", @@ -72880,16 +72906,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5738", + "$id": "5740", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning.delta'.", "type": { - "$id": "5739", + "$id": "5741", "kind": "enumvalue", "name": "response_reasoning_delta", "value": "response.reasoning.delta", @@ -72897,7 +72923,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -72911,12 +72937,12 @@ "isHttpMetadata": false }, { - "$id": "5740", + "$id": "5742", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which reasoning is being updated.", "type": { - "$id": "5741", + "$id": "5743", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72932,12 +72958,12 @@ "isHttpMetadata": false }, { - "$id": "5742", + "$id": "5744", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5743", + "$id": "5745", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72953,12 +72979,12 @@ "isHttpMetadata": false }, { - "$id": "5744", + "$id": "5746", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5745", + "$id": "5747", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72974,12 +73000,12 @@ "isHttpMetadata": false }, { - "$id": "5746", + "$id": "5748", "kind": "property", "name": "delta", "doc": "The partial update to the reasoning content.", "type": { - "$id": "5747", + "$id": "5749", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72997,7 +73023,7 @@ ] }, "response.reasoning.done": { - "$id": "5748", + "$id": "5750", "kind": "model", "name": "ResponseReasoningDoneEvent", "namespace": "OpenAI", @@ -73012,16 +73038,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5749", + "$id": "5751", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning.done'.", "type": { - "$id": "5750", + "$id": "5752", "kind": "enumvalue", "name": "response_reasoning_done", "value": "response.reasoning.done", @@ -73029,7 +73055,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -73043,12 +73069,12 @@ "isHttpMetadata": false }, { - "$id": "5751", + "$id": "5753", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which reasoning is finalized.", "type": { - "$id": "5752", + "$id": "5754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73064,12 +73090,12 @@ "isHttpMetadata": false }, { - "$id": "5753", + "$id": "5755", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5754", + "$id": "5756", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73085,12 +73111,12 @@ "isHttpMetadata": false }, { - "$id": "5755", + "$id": "5757", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5756", + "$id": "5758", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73106,12 +73132,12 @@ "isHttpMetadata": false }, { - "$id": "5757", + "$id": "5759", "kind": "property", "name": "text", "doc": "The finalized reasoning text.", "type": { - "$id": "5758", + "$id": "5760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73129,7 +73155,7 @@ ] }, "response.reasoning_summary.delta": { - "$id": "5759", + "$id": "5761", "kind": "model", "name": "ResponseReasoningSummaryDeltaEvent", "namespace": "OpenAI", @@ -73144,16 +73170,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5760", + "$id": "5762", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning_summary.delta'.", "type": { - "$id": "5761", + "$id": "5763", "kind": "enumvalue", "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", @@ -73161,7 +73187,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -73175,12 +73201,12 @@ "isHttpMetadata": false }, { - "$id": "5762", + "$id": "5764", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is being updated.", "type": { - "$id": "5763", + "$id": "5765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73196,12 +73222,12 @@ "isHttpMetadata": false }, { - "$id": "5764", + "$id": "5766", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5765", + "$id": "5767", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73217,12 +73243,12 @@ "isHttpMetadata": false }, { - "$id": "5766", + "$id": "5768", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5767", + "$id": "5769", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73238,12 +73264,12 @@ "isHttpMetadata": false }, { - "$id": "5768", + "$id": "5770", "kind": "property", "name": "delta", "doc": "The partial update to the reasoning summary content.", "type": { - "$id": "5769", + "$id": "5771", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -73261,7 +73287,7 @@ ] }, "response.reasoning_summary.done": { - "$id": "5770", + "$id": "5772", "kind": "model", "name": "ResponseReasoningSummaryDoneEvent", "namespace": "OpenAI", @@ -73276,16 +73302,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5771", + "$id": "5773", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning_summary.done'.", "type": { - "$id": "5772", + "$id": "5774", "kind": "enumvalue", "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", @@ -73293,7 +73319,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -73307,12 +73333,12 @@ "isHttpMetadata": false }, { - "$id": "5773", + "$id": "5775", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is finalized.", "type": { - "$id": "5774", + "$id": "5776", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73328,12 +73354,12 @@ "isHttpMetadata": false }, { - "$id": "5775", + "$id": "5777", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5776", + "$id": "5778", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73349,12 +73375,12 @@ "isHttpMetadata": false }, { - "$id": "5777", + "$id": "5779", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5778", + "$id": "5780", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73370,12 +73396,12 @@ "isHttpMetadata": false }, { - "$id": "5779", + "$id": "5781", "kind": "property", "name": "text", "doc": "The finalized reasoning summary text.", "type": { - "$id": "5780", + "$id": "5782", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73393,7 +73419,7 @@ ] }, "response.code_interpreter_call_code.delta": { - "$id": "5781", + "$id": "5783", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDeltaEvent", "namespace": "OpenAI", @@ -73408,16 +73434,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5782", + "$id": "5784", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.delta`.", "type": { - "$id": "5783", + "$id": "5785", "kind": "enumvalue", "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", @@ -73425,7 +73451,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -73439,12 +73465,12 @@ "isHttpMetadata": false }, { - "$id": "5784", + "$id": "5786", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5785", + "$id": "5787", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73460,12 +73486,12 @@ "isHttpMetadata": false }, { - "$id": "5786", + "$id": "5788", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5787", + "$id": "5789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73481,12 +73507,12 @@ "isHttpMetadata": false }, { - "$id": "5788", + "$id": "5790", "kind": "property", "name": "delta", "doc": "The partial code snippet added by the code interpreter.", "type": { - "$id": "5789", + "$id": "5791", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73504,7 +73530,7 @@ ] }, "response.code_interpreter_call_code.done": { - "$id": "5790", + "$id": "5792", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDoneEvent", "namespace": "OpenAI", @@ -73519,16 +73545,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5791", + "$id": "5793", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.done`.", "type": { - "$id": "5792", + "$id": "5794", "kind": "enumvalue", "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", @@ -73536,7 +73562,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -73550,12 +73576,12 @@ "isHttpMetadata": false }, { - "$id": "5793", + "$id": "5795", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5794", + "$id": "5796", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73571,12 +73597,12 @@ "isHttpMetadata": false }, { - "$id": "5795", + "$id": "5797", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5796", + "$id": "5798", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73592,12 +73618,12 @@ "isHttpMetadata": false }, { - "$id": "5797", + "$id": "5799", "kind": "property", "name": "code", "doc": "The final code snippet output by the code interpreter.", "type": { - "$id": "5798", + "$id": "5800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73615,7 +73641,7 @@ ] }, "response.code_interpreter_call.completed": { - "$id": "5799", + "$id": "5801", "kind": "model", "name": "ResponseCodeInterpreterCallCompletedEvent", "namespace": "OpenAI", @@ -73630,16 +73656,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5800", + "$id": "5802", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.completed`.", "type": { - "$id": "5801", + "$id": "5803", "kind": "enumvalue", "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", @@ -73647,7 +73673,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -73661,12 +73687,12 @@ "isHttpMetadata": false }, { - "$id": "5802", + "$id": "5804", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5803", + "$id": "5805", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73682,12 +73708,12 @@ "isHttpMetadata": false }, { - "$id": "5804", + "$id": "5806", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5805", + "$id": "5807", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73705,7 +73731,7 @@ ] }, "response.code_interpreter_call.in_progress": { - "$id": "5806", + "$id": "5808", "kind": "model", "name": "ResponseCodeInterpreterCallInProgressEvent", "namespace": "OpenAI", @@ -73720,16 +73746,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5807", + "$id": "5809", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.in_progress`.", "type": { - "$id": "5808", + "$id": "5810", "kind": "enumvalue", "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", @@ -73737,7 +73763,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -73751,12 +73777,12 @@ "isHttpMetadata": false }, { - "$id": "5809", + "$id": "5811", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5810", + "$id": "5812", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73772,12 +73798,12 @@ "isHttpMetadata": false }, { - "$id": "5811", + "$id": "5813", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5812", + "$id": "5814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73795,7 +73821,7 @@ ] }, "response.code_interpreter_call.interpreting": { - "$id": "5813", + "$id": "5815", "kind": "model", "name": "ResponseCodeInterpreterCallInterpretingEvent", "namespace": "OpenAI", @@ -73810,16 +73836,16 @@ } ], "baseModel": { - "$ref": "5336" + "$ref": "5338" }, "properties": [ { - "$id": "5814", + "$id": "5816", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.interpreting`.", "type": { - "$id": "5815", + "$id": "5817", "kind": "enumvalue", "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", @@ -73827,7 +73853,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5343" + "$ref": "5345" }, "decorators": [] }, @@ -73841,12 +73867,12 @@ "isHttpMetadata": false }, { - "$id": "5816", + "$id": "5818", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5817", + "$id": "5819", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73862,12 +73888,12 @@ "isHttpMetadata": false }, { - "$id": "5818", + "$id": "5820", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5819", + "$id": "5821", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73887,160 +73913,160 @@ } }, { - "$ref": "5340" + "$ref": "5342" }, { - "$ref": "5401" + "$ref": "5403" }, { - "$ref": "5411" + "$ref": "5413" }, { - "$ref": "5421" + "$ref": "5423" }, { - "$ref": "5425" + "$ref": "5427" }, { - "$ref": "5436" + "$ref": "5438" }, { - "$ref": "5443" + "$ref": "5445" }, { - "$ref": "5450" + "$ref": "5452" }, { - "$ref": "5457" + "$ref": "5459" }, { - "$ref": "5466" + "$ref": "5468" }, { - "$ref": "5475" + "$ref": "5477" }, { - "$ref": "5479" + "$ref": "5481" }, { - "$ref": "5483" + "$ref": "5485" }, { - "$ref": "5487" + "$ref": "5489" }, { - "$ref": "5493" + "$ref": "5495" }, { - "$ref": "5499" + "$ref": "5501" }, { - "$ref": "5510" + "$ref": "5512" }, { - "$ref": "5521" + "$ref": "5523" }, { - "$ref": "5532" + "$ref": "5534" }, { - "$ref": "5543" + "$ref": "5545" }, { - "$ref": "5553" + "$ref": "5555" }, { - "$ref": "5563" + "$ref": "5565" }, { - "$ref": "5574" + "$ref": "5576" }, { - "$ref": "5585" + "$ref": "5587" }, { - "$ref": "5596" + "$ref": "5598" }, { - "$ref": "5607" + "$ref": "5609" }, { - "$ref": "5614" + "$ref": "5616" }, { - "$ref": "5621" + "$ref": "5623" }, { - "$ref": "5628" + "$ref": "5630" }, { - "$ref": "5635" + "$ref": "5637" }, { - "$ref": "5642" + "$ref": "5644" }, { - "$ref": "5649" + "$ref": "5651" }, { - "$ref": "5660" + "$ref": "5662" }, { - "$ref": "5669" + "$ref": "5671" }, { - "$ref": "5678" + "$ref": "5680" }, { - "$ref": "5685" + "$ref": "5687" }, { - "$ref": "5692" + "$ref": "5694" }, { - "$ref": "5699" + "$ref": "5701" }, { - "$ref": "5706" + "$ref": "5708" }, { - "$ref": "5713" + "$ref": "5715" }, { - "$ref": "5720" + "$ref": "5722" }, { - "$ref": "5733" + "$ref": "5735" }, { - "$ref": "5737" + "$ref": "5739" }, { - "$ref": "5748" + "$ref": "5750" }, { - "$ref": "5759" + "$ref": "5761" }, { - "$ref": "5770" + "$ref": "5772" }, { - "$ref": "5781" + "$ref": "5783" }, { - "$ref": "5790" + "$ref": "5792" }, { - "$ref": "5799" + "$ref": "5801" }, { - "$ref": "5806" + "$ref": "5808" }, { - "$ref": "5813" + "$ref": "5815" }, { - "$id": "5820", + "$id": "5822", "kind": "model", "name": "ResponseErrorResponse", "namespace": "OpenAI", @@ -74054,12 +74080,12 @@ ], "properties": [ { - "$id": "5821", + "$id": "5823", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "5182" + "$ref": "5184" }, "optional": false, "readOnly": false, @@ -74077,7 +74103,7 @@ ] }, { - "$id": "5822", + "$id": "5824", "kind": "model", "name": "DeleteResponseResponse", "namespace": "OpenAI", @@ -74091,12 +74117,12 @@ ], "properties": [ { - "$id": "5823", + "$id": "5825", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5824", + "$id": "5826", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74116,7 +74142,7 @@ "isHttpMetadata": false }, { - "$id": "5825", + "$id": "5827", "kind": "property", "name": "object", "serializedName": "object", @@ -74137,7 +74163,7 @@ "isHttpMetadata": false }, { - "$id": "5826", + "$id": "5828", "kind": "property", "name": "deleted", "serializedName": "deleted", @@ -74160,7 +74186,7 @@ ] }, { - "$id": "5827", + "$id": "5829", "kind": "model", "name": "ResponseItemList", "namespace": "OpenAI", @@ -74175,7 +74201,7 @@ ], "properties": [ { - "$id": "5828", + "$id": "5830", "kind": "property", "name": "object", "serializedName": "object", @@ -74197,13 +74223,13 @@ "isHttpMetadata": false }, { - "$id": "5829", + "$id": "5831", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of items used to generate this response.", "type": { - "$ref": "5191" + "$ref": "5193" }, "optional": false, "readOnly": false, @@ -74219,13 +74245,13 @@ "isHttpMetadata": false }, { - "$id": "5830", + "$id": "5832", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "5831", + "$id": "5833", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -74245,13 +74271,13 @@ "isHttpMetadata": false }, { - "$id": "5832", + "$id": "5834", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "5833", + "$id": "5835", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74271,13 +74297,13 @@ "isHttpMetadata": false }, { - "$id": "5834", + "$id": "5836", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "5835", + "$id": "5837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74299,7 +74325,7 @@ ] }, { - "$id": "5836", + "$id": "5838", "kind": "model", "name": "CreateImageRequest", "namespace": "OpenAI", @@ -74308,13 +74334,13 @@ "decorators": [], "properties": [ { - "$id": "5837", + "$id": "5839", "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": "5838", + "$id": "5840", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74334,13 +74360,13 @@ "isHttpMetadata": false }, { - "$id": "5839", + "$id": "5841", "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": "5840", + "$id": "5842", "kind": "nullable", "type": { "$ref": "830" @@ -74361,16 +74387,16 @@ "isHttpMetadata": false }, { - "$id": "5841", + "$id": "5843", "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": "5842", + "$id": "5844", "kind": "nullable", "type": { - "$id": "5843", + "$id": "5845", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74392,13 +74418,13 @@ "isHttpMetadata": false }, { - "$id": "5844", + "$id": "5846", "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": "5845", + "$id": "5847", "kind": "nullable", "type": { "$ref": "835" @@ -74419,13 +74445,13 @@ "isHttpMetadata": false }, { - "$id": "5846", + "$id": "5848", "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": "5847", + "$id": "5849", "kind": "nullable", "type": { "$ref": "843" @@ -74446,13 +74472,13 @@ "isHttpMetadata": false }, { - "$id": "5848", + "$id": "5850", "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": "5849", + "$id": "5851", "kind": "nullable", "type": { "$ref": "847" @@ -74473,16 +74499,16 @@ "isHttpMetadata": false }, { - "$id": "5850", + "$id": "5852", "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": "5851", + "$id": "5853", "kind": "nullable", "type": { - "$id": "5852", + "$id": "5854", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74504,13 +74530,13 @@ "isHttpMetadata": false }, { - "$id": "5853", + "$id": "5855", "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": "5854", + "$id": "5856", "kind": "nullable", "type": { "$ref": "852" @@ -74531,13 +74557,13 @@ "isHttpMetadata": false }, { - "$id": "5855", + "$id": "5857", "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": "5856", + "$id": "5858", "kind": "nullable", "type": { "$ref": "862" @@ -74558,13 +74584,13 @@ "isHttpMetadata": false }, { - "$id": "5857", + "$id": "5859", "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": "5858", + "$id": "5860", "kind": "nullable", "type": { "$ref": "866" @@ -74585,13 +74611,13 @@ "isHttpMetadata": false }, { - "$id": "5859", + "$id": "5861", "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": "5860", + "$id": "5862", "kind": "nullable", "type": { "$ref": "871" @@ -74612,13 +74638,13 @@ "isHttpMetadata": false }, { - "$id": "5861", + "$id": "5863", "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": "5862", + "$id": "5864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74640,7 +74666,7 @@ ] }, { - "$id": "5863", + "$id": "5865", "kind": "model", "name": "ImagesResponse", "namespace": "OpenAI", @@ -74650,18 +74676,18 @@ "decorators": [], "properties": [ { - "$id": "5864", + "$id": "5866", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the image was created.", "type": { - "$id": "5865", + "$id": "5867", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5866", + "$id": "5868", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74684,17 +74710,17 @@ "isHttpMetadata": false }, { - "$id": "5867", + "$id": "5869", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of generated images.", "type": { - "$id": "5868", + "$id": "5870", "kind": "array", "name": "ArrayImage", "valueType": { - "$id": "5869", + "$id": "5871", "kind": "model", "name": "Image", "namespace": "OpenAI", @@ -74704,13 +74730,13 @@ "decorators": [], "properties": [ { - "$id": "5870", + "$id": "5872", "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": "5871", + "$id": "5873", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -74731,13 +74757,13 @@ "isHttpMetadata": false }, { - "$id": "5872", + "$id": "5874", "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": "5873", + "$id": "5875", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -74757,13 +74783,13 @@ "isHttpMetadata": false }, { - "$id": "5874", + "$id": "5876", "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": "5875", + "$id": "5877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74801,13 +74827,13 @@ "isHttpMetadata": false }, { - "$id": "5876", + "$id": "5878", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "For `gpt-image-1` only, the token usage information for the image generation.", "type": { - "$id": "5877", + "$id": "5879", "kind": "model", "name": "ImagesResponseUsage", "namespace": "OpenAI", @@ -74816,13 +74842,13 @@ "decorators": [], "properties": [ { - "$id": "5878", + "$id": "5880", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens (images and text) used for the image generation.", "type": { - "$id": "5879", + "$id": "5881", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74842,13 +74868,13 @@ "isHttpMetadata": false }, { - "$id": "5880", + "$id": "5882", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of tokens (images and text) in the input prompt.", "type": { - "$id": "5881", + "$id": "5883", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74868,13 +74894,13 @@ "isHttpMetadata": false }, { - "$id": "5882", + "$id": "5884", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of image tokens in the output image.", "type": { - "$id": "5883", + "$id": "5885", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74894,13 +74920,13 @@ "isHttpMetadata": false }, { - "$id": "5884", + "$id": "5886", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "The input tokens detailed information for the image generation.", "type": { - "$id": "5885", + "$id": "5887", "kind": "model", "name": "ImagesResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -74909,13 +74935,13 @@ "decorators": [], "properties": [ { - "$id": "5886", + "$id": "5888", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens in the input prompt.", "type": { - "$id": "5887", + "$id": "5889", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74935,13 +74961,13 @@ "isHttpMetadata": false }, { - "$id": "5888", + "$id": "5890", "kind": "property", "name": "image_tokens", "serializedName": "image_tokens", "doc": "The number of image tokens in the input prompt.", "type": { - "$id": "5889", + "$id": "5891", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74993,16 +75019,16 @@ ] }, { - "$ref": "5869" + "$ref": "5871" }, { - "$ref": "5877" + "$ref": "5879" }, { - "$ref": "5885" + "$ref": "5887" }, { - "$id": "5890", + "$id": "5892", "kind": "model", "name": "CreateImageEditRequest", "namespace": "OpenAI", @@ -75011,18 +75037,18 @@ "decorators": [], "properties": [ { - "$id": "5891", + "$id": "5893", "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": "5892", + "$id": "5894", "kind": "union", "name": "CreateImageEditRequestImage", "variantTypes": [ { - "$id": "5893", + "$id": "5895", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75030,11 +75056,11 @@ "decorators": [] }, { - "$id": "5894", + "$id": "5896", "kind": "array", "name": "Array25", "valueType": { - "$id": "5895", + "$id": "5897", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75069,13 +75095,13 @@ "isHttpMetadata": false }, { - "$id": "5896", + "$id": "5898", "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": "5897", + "$id": "5899", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75101,13 +75127,13 @@ "isHttpMetadata": false }, { - "$id": "5898", + "$id": "5900", "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": "5899", + "$id": "5901", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75134,13 +75160,13 @@ "isHttpMetadata": false }, { - "$id": "5900", + "$id": "5902", "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": "5901", + "$id": "5903", "kind": "nullable", "type": { "$ref": "875" @@ -75167,13 +75193,13 @@ "isHttpMetadata": false }, { - "$id": "5902", + "$id": "5904", "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": "5903", + "$id": "5905", "kind": "nullable", "type": { "$ref": "880" @@ -75200,21 +75226,21 @@ "isHttpMetadata": false }, { - "$id": "5904", + "$id": "5906", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5905", + "$id": "5907", "kind": "nullable", "type": { - "$id": "5906", + "$id": "5908", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5907", + "$id": "5909", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75244,13 +75270,13 @@ "isHttpMetadata": false }, { - "$id": "5908", + "$id": "5910", "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": "5909", + "$id": "5911", "kind": "nullable", "type": { "$ref": "884" @@ -75277,13 +75303,13 @@ "isHttpMetadata": false }, { - "$id": "5910", + "$id": "5912", "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": "5911", + "$id": "5913", "kind": "nullable", "type": { "$ref": "892" @@ -75310,13 +75336,13 @@ "isHttpMetadata": false }, { - "$id": "5912", + "$id": "5914", "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": "5913", + "$id": "5915", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75342,13 +75368,13 @@ "isHttpMetadata": false }, { - "$id": "5914", + "$id": "5916", "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": "5915", + "$id": "5917", "kind": "nullable", "type": { "$ref": "896" @@ -75377,7 +75403,7 @@ ] }, { - "$id": "5916", + "$id": "5918", "kind": "model", "name": "CreateImageVariationRequest", "namespace": "OpenAI", @@ -75386,13 +75412,13 @@ "decorators": [], "properties": [ { - "$id": "5917", + "$id": "5919", "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": "5918", + "$id": "5920", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -75419,13 +75445,13 @@ "isHttpMetadata": false }, { - "$id": "5919", + "$id": "5921", "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": "5920", + "$id": "5922", "kind": "nullable", "type": { "$ref": "903" @@ -75452,21 +75478,21 @@ "isHttpMetadata": false }, { - "$id": "5921", + "$id": "5923", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5922", + "$id": "5924", "kind": "nullable", "type": { - "$id": "5923", + "$id": "5925", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5924", + "$id": "5926", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75496,13 +75522,13 @@ "isHttpMetadata": false }, { - "$id": "5925", + "$id": "5927", "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": "5926", + "$id": "5928", "kind": "nullable", "type": { "$ref": "906" @@ -75529,13 +75555,13 @@ "isHttpMetadata": false }, { - "$id": "5927", + "$id": "5929", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`.", "type": { - "$id": "5928", + "$id": "5930", "kind": "nullable", "type": { "$ref": "910" @@ -75562,13 +75588,13 @@ "isHttpMetadata": false }, { - "$id": "5929", + "$id": "5931", "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": "5930", + "$id": "5932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75596,7 +75622,7 @@ ] }, { - "$id": "5931", + "$id": "5933", "kind": "model", "name": "CreateMessageRequest", "namespace": "OpenAI", @@ -75605,7 +75631,7 @@ "decorators": [], "properties": [ { - "$id": "5932", + "$id": "5934", "kind": "property", "name": "role", "serializedName": "role", @@ -75627,16 +75653,16 @@ "isHttpMetadata": false }, { - "$id": "5933", + "$id": "5935", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "5934", + "$id": "5936", "kind": "array", "name": "ArrayMessageContent", "valueType": { - "$id": "5935", + "$id": "5937", "kind": "model", "name": "MessageContent", "namespace": "OpenAI", @@ -75646,7 +75672,7 @@ "doc": "Represents a single piece of content in an Assistants API message.", "decorators": [], "discriminatorProperty": { - "$id": "5936", + "$id": "5938", "kind": "property", "name": "type", "serializedName": "type", @@ -75668,12 +75694,12 @@ }, "properties": [ { - "$ref": "5936" + "$ref": "5938" } ], "discriminatedSubtypes": { "image_file": { - "$id": "5937", + "$id": "5939", "kind": "model", "name": "MessageContentImageFileObject", "namespace": "OpenAI", @@ -75684,17 +75710,17 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "5935" + "$ref": "5937" }, "properties": [ { - "$id": "5938", + "$id": "5940", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_file`.", "type": { - "$id": "5939", + "$id": "5941", "kind": "enumvalue", "name": "image_file", "value": "image_file", @@ -75702,14 +75728,14 @@ "$ref": "920" }, "enumType": { - "$id": "5940", + "$id": "5942", "kind": "enum", "decorators": [], "name": "MessageContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5941", + "$id": "5943", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -75718,59 +75744,59 @@ }, "values": [ { - "$id": "5942", + "$id": "5944", "kind": "enumvalue", "decorators": [], "doc": "The content is a text message.", "name": "text", "value": "text", "valueType": { - "$ref": "5941" + "$ref": "5943" }, "enumType": { - "$ref": "5940" + "$ref": "5942" } }, { - "$id": "5943", + "$id": "5945", "kind": "enumvalue", "decorators": [], "doc": "The content is an image file.", "name": "image_file", "value": "image_file", "valueType": { - "$ref": "5941" + "$ref": "5943" }, "enumType": { - "$ref": "5940" + "$ref": "5942" } }, { - "$id": "5944", + "$id": "5946", "kind": "enumvalue", "decorators": [], "doc": "The content is an image URL.", "name": "image_url", "value": "image_url", "valueType": { - "$ref": "5941" + "$ref": "5943" }, "enumType": { - "$ref": "5940" + "$ref": "5942" } }, { - "$id": "5945", + "$id": "5947", "kind": "enumvalue", "decorators": [], "doc": "The content is a refusal message.", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "5941" + "$ref": "5943" }, "enumType": { - "$ref": "5940" + "$ref": "5942" } } ], @@ -75800,12 +75826,12 @@ "isHttpMetadata": false }, { - "$id": "5946", + "$id": "5948", "kind": "property", "name": "image_file", "serializedName": "image_file", "type": { - "$id": "5947", + "$id": "5949", "kind": "model", "name": "MessageContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -75814,13 +75840,13 @@ "decorators": [], "properties": [ { - "$id": "5948", + "$id": "5950", "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": "5949", + "$id": "5951", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75840,7 +75866,7 @@ "isHttpMetadata": false }, { - "$id": "5950", + "$id": "5952", "kind": "property", "name": "detail", "serializedName": "detail", @@ -75879,7 +75905,7 @@ ] }, "text": { - "$id": "5951", + "$id": "5953", "kind": "model", "name": "MessageContentTextObject", "namespace": "OpenAI", @@ -75890,17 +75916,17 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "5935" + "$ref": "5937" }, "properties": [ { - "$id": "5952", + "$id": "5954", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$id": "5953", + "$id": "5955", "kind": "enumvalue", "name": "text", "value": "text", @@ -75908,7 +75934,7 @@ "$ref": "920" }, "enumType": { - "$ref": "5940" + "$ref": "5942" }, "doc": "The content is a text message.", "decorators": [] @@ -75927,24 +75953,24 @@ "isHttpMetadata": false }, { - "$id": "5954", + "$id": "5956", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5955", + "$id": "5957", "kind": "union", "name": "MessageContentTextObjectText", "variantTypes": [ { - "$id": "5956", + "$id": "5958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "5957", + "$id": "5959", "kind": "model", "name": "MessageContentTextObjectText1", "namespace": "OpenAI", @@ -75953,12 +75979,12 @@ "decorators": [], "properties": [ { - "$id": "5958", + "$id": "5960", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "5959", + "$id": "5961", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75978,16 +76004,16 @@ "isHttpMetadata": false }, { - "$id": "5960", + "$id": "5962", "kind": "property", "name": "annotations", "serializedName": "annotations", "type": { - "$id": "5961", + "$id": "5963", "kind": "array", "name": "ArrayMessageContentTextObjectAnnotation", "valueType": { - "$id": "5962", + "$id": "5964", "kind": "model", "name": "MessageContentTextObjectAnnotation", "namespace": "OpenAI", @@ -75996,7 +76022,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "5963", + "$id": "5965", "kind": "property", "name": "type", "serializedName": "type", @@ -76019,12 +76045,12 @@ }, "properties": [ { - "$ref": "5963" + "$ref": "5965" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "5964", + "$id": "5966", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -76035,17 +76061,17 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "5962" + "$ref": "5964" }, "properties": [ { - "$id": "5965", + "$id": "5967", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_citation`.", "type": { - "$id": "5966", + "$id": "5968", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", @@ -76053,14 +76079,14 @@ "$ref": "931" }, "enumType": { - "$id": "5967", + "$id": "5969", "kind": "enum", "decorators": [], "name": "MessageContentTextAnnotationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5968", + "$id": "5970", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -76069,29 +76095,29 @@ }, "values": [ { - "$id": "5969", + "$id": "5971", "kind": "enumvalue", "decorators": [], "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "5968" + "$ref": "5970" }, "enumType": { - "$ref": "5967" + "$ref": "5969" } }, { - "$id": "5970", + "$id": "5972", "kind": "enumvalue", "decorators": [], "name": "file_path", "value": "file_path", "valueType": { - "$ref": "5968" + "$ref": "5970" }, "enumType": { - "$ref": "5967" + "$ref": "5969" } } ], @@ -76120,13 +76146,13 @@ "isHttpMetadata": false }, { - "$id": "5971", + "$id": "5973", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5972", + "$id": "5974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76146,12 +76172,12 @@ "isHttpMetadata": false }, { - "$id": "5973", + "$id": "5975", "kind": "property", "name": "file_citation", "serializedName": "file_citation", "type": { - "$id": "5974", + "$id": "5976", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -76160,13 +76186,13 @@ "decorators": [], "properties": [ { - "$id": "5975", + "$id": "5977", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "5976", + "$id": "5978", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76201,12 +76227,12 @@ "isHttpMetadata": false }, { - "$id": "5977", + "$id": "5979", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5978", + "$id": "5980", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76226,12 +76252,12 @@ "isHttpMetadata": false }, { - "$id": "5979", + "$id": "5981", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5980", + "$id": "5982", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76253,7 +76279,7 @@ ] }, "file_path": { - "$id": "5981", + "$id": "5983", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -76264,17 +76290,17 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "5962" + "$ref": "5964" }, "properties": [ { - "$id": "5982", + "$id": "5984", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_path`.", "type": { - "$id": "5983", + "$id": "5985", "kind": "enumvalue", "name": "file_path", "value": "file_path", @@ -76282,7 +76308,7 @@ "$ref": "931" }, "enumType": { - "$ref": "5967" + "$ref": "5969" }, "decorators": [] }, @@ -76300,13 +76326,13 @@ "isHttpMetadata": false }, { - "$id": "5984", + "$id": "5986", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5985", + "$id": "5987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76326,12 +76352,12 @@ "isHttpMetadata": false }, { - "$id": "5986", + "$id": "5988", "kind": "property", "name": "file_path", "serializedName": "file_path", "type": { - "$id": "5987", + "$id": "5989", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -76340,13 +76366,13 @@ "decorators": [], "properties": [ { - "$id": "5988", + "$id": "5990", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "5989", + "$id": "5991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76381,12 +76407,12 @@ "isHttpMetadata": false }, { - "$id": "5990", + "$id": "5992", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5991", + "$id": "5993", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76406,12 +76432,12 @@ "isHttpMetadata": false }, { - "$id": "5992", + "$id": "5994", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5993", + "$id": "5995", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76472,7 +76498,7 @@ ] }, "refusal": { - "$id": "5994", + "$id": "5996", "kind": "model", "name": "MessageContentRefusalObject", "namespace": "OpenAI", @@ -76483,17 +76509,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "5935" + "$ref": "5937" }, "properties": [ { - "$id": "5995", + "$id": "5997", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `refusal`.", "type": { - "$id": "5996", + "$id": "5998", "kind": "enumvalue", "name": "refusal", "value": "refusal", @@ -76501,7 +76527,7 @@ "$ref": "920" }, "enumType": { - "$ref": "5940" + "$ref": "5942" }, "doc": "The content is a refusal message.", "decorators": [] @@ -76520,12 +76546,12 @@ "isHttpMetadata": false }, { - "$id": "5997", + "$id": "5999", "kind": "property", "name": "refusal", "serializedName": "refusal", "type": { - "$id": "5998", + "$id": "6000", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76547,7 +76573,7 @@ ] }, "image_url": { - "$id": "5999", + "$id": "6001", "kind": "model", "name": "MessageContentImageUrlObject", "namespace": "OpenAI", @@ -76558,17 +76584,17 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "5935" + "$ref": "5937" }, "properties": [ { - "$id": "6000", + "$id": "6002", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "6001", + "$id": "6003", "kind": "enumvalue", "name": "image_url", "value": "image_url", @@ -76576,7 +76602,7 @@ "$ref": "920" }, "enumType": { - "$ref": "5940" + "$ref": "5942" }, "doc": "The content is an image URL.", "decorators": [] @@ -76595,12 +76621,12 @@ "isHttpMetadata": false }, { - "$id": "6002", + "$id": "6004", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "6003", + "$id": "6005", "kind": "model", "name": "MessageContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -76609,13 +76635,13 @@ "decorators": [], "properties": [ { - "$id": "6004", + "$id": "6006", "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": "6005", + "$id": "6007", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -76635,7 +76661,7 @@ "isHttpMetadata": false }, { - "$id": "6006", + "$id": "6008", "kind": "property", "name": "detail", "serializedName": "detail", @@ -76692,20 +76718,20 @@ "isHttpMetadata": false }, { - "$id": "6007", + "$id": "6009", "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": "6008", + "$id": "6010", "kind": "nullable", "type": { - "$id": "6009", + "$id": "6011", "kind": "array", "name": "Array26", "valueType": { - "$id": "6010", + "$id": "6012", "kind": "model", "name": "CreateMessageRequestAttachment", "namespace": "OpenAI", @@ -76714,13 +76740,13 @@ "decorators": [], "properties": [ { - "$id": "6011", + "$id": "6013", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "6012", + "$id": "6014", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76740,17 +76766,17 @@ "isHttpMetadata": false }, { - "$id": "6013", + "$id": "6015", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "6014", + "$id": "6016", "kind": "array", "name": "Array27", "valueType": { - "$id": "6015", + "$id": "6017", "kind": "union", "name": "CreateMessageRequestAttachmentTool", "variantTypes": [ @@ -76758,7 +76784,7 @@ "$ref": "2397" }, { - "$id": "6016", + "$id": "6018", "kind": "model", "name": "AssistantToolsFileSearchTypeOnly", "namespace": "OpenAI", @@ -76767,7 +76793,7 @@ "decorators": [], "properties": [ { - "$id": "6017", + "$id": "6019", "kind": "property", "name": "type", "serializedName": "type", @@ -76831,7 +76857,7 @@ "isHttpMetadata": false }, { - "$id": "6018", + "$id": "6020", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -76854,53 +76880,53 @@ } ] }, - { - "$ref": "5935" - }, { "$ref": "5937" }, { - "$ref": "5947" + "$ref": "5939" }, { - "$ref": "5951" + "$ref": "5949" }, { - "$ref": "5957" + "$ref": "5953" }, { - "$ref": "5962" + "$ref": "5959" }, { "$ref": "5964" }, { - "$ref": "5974" + "$ref": "5966" + }, + { + "$ref": "5976" }, { - "$ref": "5981" + "$ref": "5983" }, { - "$ref": "5987" + "$ref": "5989" }, { - "$ref": "5994" + "$ref": "5996" }, { - "$ref": "5999" + "$ref": "6001" }, { - "$ref": "6003" + "$ref": "6005" }, { - "$ref": "6010" + "$ref": "6012" }, { - "$ref": "6016" + "$ref": "6018" }, { - "$id": "6019", + "$id": "6021", "kind": "model", "name": "MessageObject", "namespace": "OpenAI", @@ -76910,13 +76936,13 @@ "decorators": [], "properties": [ { - "$id": "6020", + "$id": "6022", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6021", + "$id": "6023", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76936,7 +76962,7 @@ "isHttpMetadata": false }, { - "$id": "6022", + "$id": "6024", "kind": "property", "name": "object", "serializedName": "object", @@ -76958,18 +76984,18 @@ "isHttpMetadata": false }, { - "$id": "6023", + "$id": "6025", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the message was created.", "type": { - "$id": "6024", + "$id": "6026", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6025", + "$id": "6027", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76992,13 +77018,13 @@ "isHttpMetadata": false }, { - "$id": "6026", + "$id": "6028", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The [thread](/docs/api-reference/threads) ID that this message belongs to.", "type": { - "$id": "6027", + "$id": "6029", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77018,7 +77044,7 @@ "isHttpMetadata": false }, { - "$id": "6028", + "$id": "6030", "kind": "property", "name": "status", "serializedName": "status", @@ -77040,16 +77066,16 @@ "isHttpMetadata": false }, { - "$id": "6029", + "$id": "6031", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "On an incomplete message, details about why the message is incomplete.", "type": { - "$id": "6030", + "$id": "6032", "kind": "nullable", "type": { - "$id": "6031", + "$id": "6033", "kind": "model", "name": "MessageObjectIncompleteDetails1", "namespace": "OpenAI", @@ -77058,7 +77084,7 @@ "decorators": [], "properties": [ { - "$id": "6032", + "$id": "6034", "kind": "property", "name": "reason", "serializedName": "reason", @@ -77097,21 +77123,21 @@ "isHttpMetadata": false }, { - "$id": "6033", + "$id": "6035", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the message was completed.", "type": { - "$id": "6034", + "$id": "6036", "kind": "nullable", "type": { - "$id": "6035", + "$id": "6037", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6036", + "$id": "6038", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77136,21 +77162,21 @@ "isHttpMetadata": false }, { - "$id": "6037", + "$id": "6039", "kind": "property", "name": "incomplete_at", "serializedName": "incomplete_at", "doc": "The Unix timestamp (in seconds) for when the message was marked as incomplete.", "type": { - "$id": "6038", + "$id": "6040", "kind": "nullable", "type": { - "$id": "6039", + "$id": "6041", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6040", + "$id": "6042", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -77175,7 +77201,7 @@ "isHttpMetadata": false }, { - "$id": "6041", + "$id": "6043", "kind": "property", "name": "role", "serializedName": "role", @@ -77197,13 +77223,13 @@ "isHttpMetadata": false }, { - "$id": "6042", + "$id": "6044", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$ref": "5934" + "$ref": "5936" }, "optional": false, "readOnly": true, @@ -77219,16 +77245,16 @@ "isHttpMetadata": false }, { - "$id": "6043", + "$id": "6045", "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": "6044", + "$id": "6046", "kind": "nullable", "type": { - "$id": "6045", + "$id": "6047", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77250,16 +77276,16 @@ "isHttpMetadata": false }, { - "$id": "6046", + "$id": "6048", "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": "6047", + "$id": "6049", "kind": "nullable", "type": { - "$id": "6048", + "$id": "6050", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77281,20 +77307,20 @@ "isHttpMetadata": false }, { - "$id": "6049", + "$id": "6051", "kind": "property", "name": "attachments", "serializedName": "attachments", "doc": "A list of files attached to the message, and the tools they were added to.", "type": { - "$id": "6050", + "$id": "6052", "kind": "nullable", "type": { - "$id": "6051", + "$id": "6053", "kind": "array", "name": "Array28", "valueType": { - "$id": "6052", + "$id": "6054", "kind": "model", "name": "MessageObjectAttachment", "namespace": "OpenAI", @@ -77303,13 +77329,13 @@ "decorators": [], "properties": [ { - "$id": "6053", + "$id": "6055", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "6054", + "$id": "6056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77329,17 +77355,17 @@ "isHttpMetadata": false }, { - "$id": "6055", + "$id": "6057", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "6056", + "$id": "6058", "kind": "array", "name": "Array29", "valueType": { - "$id": "6057", + "$id": "6059", "kind": "union", "name": "MessageObjectAttachmentTool", "variantTypes": [ @@ -77347,7 +77373,7 @@ "$ref": "2397" }, { - "$ref": "6016" + "$ref": "6018" } ], "namespace": "OpenAI", @@ -77390,7 +77416,7 @@ "isHttpMetadata": false }, { - "$id": "6058", + "$id": "6060", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -77414,13 +77440,13 @@ ] }, { - "$ref": "6031" + "$ref": "6033" }, { - "$ref": "6052" + "$ref": "6054" }, { - "$id": "6059", + "$id": "6061", "kind": "model", "name": "ListMessagesResponse", "namespace": "OpenAI", @@ -77429,7 +77455,7 @@ "decorators": [], "properties": [ { - "$id": "6060", + "$id": "6062", "kind": "property", "name": "object", "serializedName": "object", @@ -77450,16 +77476,16 @@ "isHttpMetadata": false }, { - "$id": "6061", + "$id": "6063", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6062", + "$id": "6064", "kind": "array", "name": "ArrayMessageObject", "valueType": { - "$ref": "6019" + "$ref": "6021" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -77478,12 +77504,12 @@ "isHttpMetadata": false }, { - "$id": "6063", + "$id": "6065", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6064", + "$id": "6066", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77503,12 +77529,12 @@ "isHttpMetadata": false }, { - "$id": "6065", + "$id": "6067", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6066", + "$id": "6068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77528,12 +77554,12 @@ "isHttpMetadata": false }, { - "$id": "6067", + "$id": "6069", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6068", + "$id": "6070", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77555,7 +77581,7 @@ ] }, { - "$id": "6069", + "$id": "6071", "kind": "model", "name": "ModifyMessageRequest", "namespace": "OpenAI", @@ -77564,7 +77590,7 @@ "decorators": [], "properties": [ { - "$id": "6070", + "$id": "6072", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -77588,7 +77614,7 @@ ] }, { - "$id": "6071", + "$id": "6073", "kind": "model", "name": "DeleteMessageResponse", "namespace": "OpenAI", @@ -77597,12 +77623,12 @@ "decorators": [], "properties": [ { - "$id": "6072", + "$id": "6074", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6073", + "$id": "6075", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77622,12 +77648,12 @@ "isHttpMetadata": false }, { - "$id": "6074", + "$id": "6076", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6075", + "$id": "6077", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77647,7 +77673,7 @@ "isHttpMetadata": false }, { - "$id": "6076", + "$id": "6078", "kind": "property", "name": "object", "serializedName": "object", @@ -77670,7 +77696,7 @@ ] }, { - "$id": "6077", + "$id": "6079", "kind": "model", "name": "CreateModerationRequest", "namespace": "OpenAI", @@ -77679,18 +77705,18 @@ "decorators": [], "properties": [ { - "$id": "6078", + "$id": "6080", "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": "6079", + "$id": "6081", "kind": "union", "name": "CreateModerationRequestInput", "variantTypes": [ { - "$id": "6080", + "$id": "6082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77700,16 +77726,16 @@ "$ref": "2437" }, { - "$id": "6081", + "$id": "6083", "kind": "array", "name": "Array30", "valueType": { - "$id": "6082", + "$id": "6084", "kind": "union", "name": "CreateModerationRequestInput1", "variantTypes": [ { - "$id": "6083", + "$id": "6085", "kind": "model", "name": "CreateModerationRequestInput2", "namespace": "OpenAI", @@ -77718,7 +77744,7 @@ "decorators": [], "properties": [ { - "$id": "6084", + "$id": "6086", "kind": "property", "name": "type", "serializedName": "type", @@ -77740,13 +77766,13 @@ "isHttpMetadata": false }, { - "$id": "6085", + "$id": "6087", "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": "6086", + "$id": "6088", "kind": "model", "name": "CreateModerationRequestInputImageUrl", "namespace": "OpenAI", @@ -77755,13 +77781,13 @@ "decorators": [], "properties": [ { - "$id": "6087", + "$id": "6089", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "6088", + "$id": "6090", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77798,7 +77824,7 @@ ] }, { - "$id": "6089", + "$id": "6091", "kind": "model", "name": "CreateModerationRequestInput3", "namespace": "OpenAI", @@ -77807,7 +77833,7 @@ "decorators": [], "properties": [ { - "$id": "6090", + "$id": "6092", "kind": "property", "name": "type", "serializedName": "type", @@ -77829,13 +77855,13 @@ "isHttpMetadata": false }, { - "$id": "6091", + "$id": "6093", "kind": "property", "name": "text", "serializedName": "text", "doc": "A string of text to classify.", "type": { - "$id": "6092", + "$id": "6094", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77881,7 +77907,7 @@ "isHttpMetadata": false }, { - "$id": "6093", + "$id": "6095", "kind": "property", "name": "model", "serializedName": "model", @@ -77905,16 +77931,16 @@ ] }, { - "$ref": "6083" + "$ref": "6085" }, { - "$ref": "6086" + "$ref": "6088" }, { - "$ref": "6089" + "$ref": "6091" }, { - "$id": "6094", + "$id": "6096", "kind": "model", "name": "CreateModerationResponse", "namespace": "OpenAI", @@ -77924,13 +77950,13 @@ "decorators": [], "properties": [ { - "$id": "6095", + "$id": "6097", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique identifier for the moderation request.", "type": { - "$id": "6096", + "$id": "6098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77950,13 +77976,13 @@ "isHttpMetadata": false }, { - "$id": "6097", + "$id": "6099", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used to generate the moderation results.", "type": { - "$id": "6098", + "$id": "6100", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -77976,17 +78002,17 @@ "isHttpMetadata": false }, { - "$id": "6099", + "$id": "6101", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of moderation objects.", "type": { - "$id": "6100", + "$id": "6102", "kind": "array", "name": "ArrayCreateModerationResponseResult", "valueType": { - "$id": "6101", + "$id": "6103", "kind": "model", "name": "CreateModerationResponseResult", "namespace": "OpenAI", @@ -77995,13 +78021,13 @@ "decorators": [], "properties": [ { - "$id": "6102", + "$id": "6104", "kind": "property", "name": "flagged", "serializedName": "flagged", "doc": "Whether any of the below categories are flagged.", "type": { - "$id": "6103", + "$id": "6105", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78021,13 +78047,13 @@ "isHttpMetadata": false }, { - "$id": "6104", + "$id": "6106", "kind": "property", "name": "categories", "serializedName": "categories", "doc": "A list of the categories, and whether they are flagged or not.", "type": { - "$id": "6105", + "$id": "6107", "kind": "model", "name": "CreateModerationResponseResultCategories", "namespace": "OpenAI", @@ -78036,13 +78062,13 @@ "decorators": [], "properties": [ { - "$id": "6106", + "$id": "6108", "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": "6107", + "$id": "6109", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78062,13 +78088,13 @@ "isHttpMetadata": false }, { - "$id": "6108", + "$id": "6110", "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": "6109", + "$id": "6111", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78088,13 +78114,13 @@ "isHttpMetadata": false }, { - "$id": "6110", + "$id": "6112", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "Content that expresses, incites, or promotes harassing language towards any target.", "type": { - "$id": "6111", + "$id": "6113", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78114,13 +78140,13 @@ "isHttpMetadata": false }, { - "$id": "6112", + "$id": "6114", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "Harassment content that also includes violence or serious harm towards any target.", "type": { - "$id": "6113", + "$id": "6115", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78140,13 +78166,13 @@ "isHttpMetadata": false }, { - "$id": "6114", + "$id": "6116", "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": "6115", + "$id": "6117", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78166,13 +78192,13 @@ "isHttpMetadata": false }, { - "$id": "6116", + "$id": "6118", "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": "6117", + "$id": "6119", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78192,13 +78218,13 @@ "isHttpMetadata": false }, { - "$id": "6118", + "$id": "6120", "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": "6119", + "$id": "6121", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78218,13 +78244,13 @@ "isHttpMetadata": false }, { - "$id": "6120", + "$id": "6122", "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": "6121", + "$id": "6123", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78244,13 +78270,13 @@ "isHttpMetadata": false }, { - "$id": "6122", + "$id": "6124", "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": "6123", + "$id": "6125", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78270,13 +78296,13 @@ "isHttpMetadata": false }, { - "$id": "6124", + "$id": "6126", "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": "6125", + "$id": "6127", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78296,13 +78322,13 @@ "isHttpMetadata": false }, { - "$id": "6126", + "$id": "6128", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "Sexual content that includes an individual who is under 18 years old.", "type": { - "$id": "6127", + "$id": "6129", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78322,13 +78348,13 @@ "isHttpMetadata": false }, { - "$id": "6128", + "$id": "6130", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "Content that depicts death, violence, or physical injury.", "type": { - "$id": "6129", + "$id": "6131", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78348,13 +78374,13 @@ "isHttpMetadata": false }, { - "$id": "6130", + "$id": "6132", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "Content that depicts death, violence, or physical injury in graphic detail.", "type": { - "$id": "6131", + "$id": "6133", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78389,13 +78415,13 @@ "isHttpMetadata": false }, { - "$id": "6132", + "$id": "6134", "kind": "property", "name": "category_scores", "serializedName": "category_scores", "doc": "A list of the categories along with their scores as predicted by model.", "type": { - "$id": "6133", + "$id": "6135", "kind": "model", "name": "CreateModerationResponseResultCategoryScores", "namespace": "OpenAI", @@ -78404,13 +78430,13 @@ "decorators": [], "properties": [ { - "$id": "6134", + "$id": "6136", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The score for the category 'hate'.", "type": { - "$id": "6135", + "$id": "6137", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78430,13 +78456,13 @@ "isHttpMetadata": false }, { - "$id": "6136", + "$id": "6138", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The score for the category 'hate/threatening'.", "type": { - "$id": "6137", + "$id": "6139", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78456,13 +78482,13 @@ "isHttpMetadata": false }, { - "$id": "6138", + "$id": "6140", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The score for the category 'harassment'.", "type": { - "$id": "6139", + "$id": "6141", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78482,13 +78508,13 @@ "isHttpMetadata": false }, { - "$id": "6140", + "$id": "6142", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The score for the category 'harassment/threatening'.", "type": { - "$id": "6141", + "$id": "6143", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78508,13 +78534,13 @@ "isHttpMetadata": false }, { - "$id": "6142", + "$id": "6144", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The score for the category 'illicit'.", "type": { - "$id": "6143", + "$id": "6145", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78534,13 +78560,13 @@ "isHttpMetadata": false }, { - "$id": "6144", + "$id": "6146", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The score for the category 'illicit/violent'.", "type": { - "$id": "6145", + "$id": "6147", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78560,13 +78586,13 @@ "isHttpMetadata": false }, { - "$id": "6146", + "$id": "6148", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The score for the category 'self-harm'.", "type": { - "$id": "6147", + "$id": "6149", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78586,13 +78612,13 @@ "isHttpMetadata": false }, { - "$id": "6148", + "$id": "6150", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The score for the category 'self-harm/intent'.", "type": { - "$id": "6149", + "$id": "6151", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78612,13 +78638,13 @@ "isHttpMetadata": false }, { - "$id": "6150", + "$id": "6152", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The score for the category 'self-harm/instructions'.", "type": { - "$id": "6151", + "$id": "6153", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78638,13 +78664,13 @@ "isHttpMetadata": false }, { - "$id": "6152", + "$id": "6154", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The score for the category 'sexual'.", "type": { - "$id": "6153", + "$id": "6155", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78664,13 +78690,13 @@ "isHttpMetadata": false }, { - "$id": "6154", + "$id": "6156", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The score for the category 'sexual/minors'.", "type": { - "$id": "6155", + "$id": "6157", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78690,13 +78716,13 @@ "isHttpMetadata": false }, { - "$id": "6156", + "$id": "6158", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The score for the category 'violence'.", "type": { - "$id": "6157", + "$id": "6159", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78716,13 +78742,13 @@ "isHttpMetadata": false }, { - "$id": "6158", + "$id": "6160", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The score for the category 'violence/graphic'.", "type": { - "$id": "6159", + "$id": "6161", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78757,13 +78783,13 @@ "isHttpMetadata": false }, { - "$id": "6160", + "$id": "6162", "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": "6161", + "$id": "6163", "kind": "model", "name": "CreateModerationResponseResultCategoryAppliedInputTypes", "namespace": "OpenAI", @@ -78772,17 +78798,17 @@ "decorators": [], "properties": [ { - "$id": "6162", + "$id": "6164", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The applied input type(s) for the category 'hate'.", "type": { - "$id": "6163", + "$id": "6165", "kind": "array", "name": "Array31", "valueType": { - "$id": "6164", + "$id": "6166", "kind": "enumvalue", "name": "text", "value": "text", @@ -78790,14 +78816,14 @@ "$ref": "1450" }, "enumType": { - "$id": "6165", + "$id": "6167", "kind": "enum", "decorators": [], "name": "ModerationAppliedInputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6166", + "$id": "6168", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -78806,29 +78832,29 @@ }, "values": [ { - "$id": "6167", + "$id": "6169", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "6166" + "$ref": "6168" }, "enumType": { - "$ref": "6165" + "$ref": "6167" } }, { - "$id": "6168", + "$id": "6170", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6166" + "$ref": "6168" }, "enumType": { - "$ref": "6165" + "$ref": "6167" } } ], @@ -78860,13 +78886,13 @@ "isHttpMetadata": false }, { - "$id": "6169", + "$id": "6171", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The applied input type(s) for the category 'hate/threatening'.", "type": { - "$ref": "6163" + "$ref": "6165" }, "optional": false, "readOnly": false, @@ -78882,13 +78908,13 @@ "isHttpMetadata": false }, { - "$id": "6170", + "$id": "6172", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The applied input type(s) for the category 'harassment'.", "type": { - "$ref": "6163" + "$ref": "6165" }, "optional": false, "readOnly": false, @@ -78904,13 +78930,13 @@ "isHttpMetadata": false }, { - "$id": "6171", + "$id": "6173", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The applied input type(s) for the category 'harassment/threatening'.", "type": { - "$ref": "6163" + "$ref": "6165" }, "optional": false, "readOnly": false, @@ -78926,13 +78952,13 @@ "isHttpMetadata": false }, { - "$id": "6172", + "$id": "6174", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The applied input type(s) for the category 'illicit'.", "type": { - "$ref": "6163" + "$ref": "6165" }, "optional": false, "readOnly": false, @@ -78948,13 +78974,13 @@ "isHttpMetadata": false }, { - "$id": "6173", + "$id": "6175", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The applied input type(s) for the category 'illicit/violent'.", "type": { - "$ref": "6163" + "$ref": "6165" }, "optional": false, "readOnly": false, @@ -78970,25 +78996,25 @@ "isHttpMetadata": false }, { - "$id": "6174", + "$id": "6176", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The applied input type(s) for the category 'self-harm'.", "type": { - "$id": "6175", + "$id": "6177", "kind": "array", "name": "Array32", "valueType": { - "$id": "6176", + "$id": "6178", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarm", "variantTypes": [ { - "$ref": "6164" + "$ref": "6166" }, { - "$id": "6177", + "$id": "6179", "kind": "enumvalue", "name": "image", "value": "image", @@ -78996,7 +79022,7 @@ "$ref": "1450" }, "enumType": { - "$ref": "6165" + "$ref": "6167" }, "decorators": [] } @@ -79021,25 +79047,25 @@ "isHttpMetadata": false }, { - "$id": "6178", + "$id": "6180", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The applied input type(s) for the category 'self-harm/intent'.", "type": { - "$id": "6179", + "$id": "6181", "kind": "array", "name": "Array33", "valueType": { - "$id": "6180", + "$id": "6182", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntent", "variantTypes": [ { - "$ref": "6164" + "$ref": "6166" }, { - "$ref": "6177" + "$ref": "6179" } ], "namespace": "OpenAI", @@ -79062,25 +79088,25 @@ "isHttpMetadata": false }, { - "$id": "6181", + "$id": "6183", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The applied input type(s) for the category 'self-harm/instructions'.", "type": { - "$id": "6182", + "$id": "6184", "kind": "array", "name": "Array34", "valueType": { - "$id": "6183", + "$id": "6185", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction", "variantTypes": [ { - "$ref": "6164" + "$ref": "6166" }, { - "$ref": "6177" + "$ref": "6179" } ], "namespace": "OpenAI", @@ -79103,25 +79129,25 @@ "isHttpMetadata": false }, { - "$id": "6184", + "$id": "6186", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The applied input type(s) for the category 'sexual'.", "type": { - "$id": "6185", + "$id": "6187", "kind": "array", "name": "Array35", "valueType": { - "$id": "6186", + "$id": "6188", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSexual", "variantTypes": [ { - "$ref": "6164" + "$ref": "6166" }, { - "$ref": "6177" + "$ref": "6179" } ], "namespace": "OpenAI", @@ -79144,13 +79170,13 @@ "isHttpMetadata": false }, { - "$id": "6187", + "$id": "6189", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The applied input type(s) for the category 'sexual/minors'.", "type": { - "$ref": "6163" + "$ref": "6165" }, "optional": false, "readOnly": false, @@ -79166,25 +79192,25 @@ "isHttpMetadata": false }, { - "$id": "6188", + "$id": "6190", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The applied input type(s) for the category 'violence'.", "type": { - "$id": "6189", + "$id": "6191", "kind": "array", "name": "Array36", "valueType": { - "$id": "6190", + "$id": "6192", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolence", "variantTypes": [ { - "$ref": "6164" + "$ref": "6166" }, { - "$ref": "6177" + "$ref": "6179" } ], "namespace": "OpenAI", @@ -79207,25 +79233,25 @@ "isHttpMetadata": false }, { - "$id": "6191", + "$id": "6193", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The applied input type(s) for the category 'violence/graphic'.", "type": { - "$id": "6192", + "$id": "6194", "kind": "array", "name": "Array37", "valueType": { - "$id": "6193", + "$id": "6195", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphic", "variantTypes": [ { - "$ref": "6164" + "$ref": "6166" }, { - "$ref": "6177" + "$ref": "6179" } ], "namespace": "OpenAI", @@ -79283,19 +79309,19 @@ ] }, { - "$ref": "6101" + "$ref": "6103" }, { - "$ref": "6105" + "$ref": "6107" }, { - "$ref": "6133" + "$ref": "6135" }, { - "$ref": "6161" + "$ref": "6163" }, { - "$id": "6194", + "$id": "6196", "kind": "model", "name": "CreateThreadAndRunRequest", "namespace": "OpenAI", @@ -79304,13 +79330,13 @@ "decorators": [], "properties": [ { - "$id": "6195", + "$id": "6197", "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": "6196", + "$id": "6198", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79330,12 +79356,12 @@ "isHttpMetadata": false }, { - "$id": "6197", + "$id": "6199", "kind": "property", "name": "thread", "serializedName": "thread", "type": { - "$id": "6198", + "$id": "6200", "kind": "model", "name": "CreateThreadRequest", "namespace": "OpenAI", @@ -79345,17 +79371,17 @@ "decorators": [], "properties": [ { - "$id": "6199", + "$id": "6201", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of [messages](/docs/api-reference/messages) to start the thread with.", "type": { - "$id": "6200", + "$id": "6202", "kind": "array", "name": "ArrayCreateMessageRequest", "valueType": { - "$ref": "5931" + "$ref": "5933" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -79374,16 +79400,16 @@ "isHttpMetadata": false }, { - "$id": "6201", + "$id": "6203", "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": "6202", + "$id": "6204", "kind": "nullable", "type": { - "$id": "6203", + "$id": "6205", "kind": "model", "name": "CreateThreadRequestToolResources1", "namespace": "OpenAI", @@ -79392,12 +79418,12 @@ "decorators": [], "properties": [ { - "$id": "6204", + "$id": "6206", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6205", + "$id": "6207", "kind": "model", "name": "CreateThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -79406,7 +79432,7 @@ "decorators": [], "properties": [ { - "$id": "6206", + "$id": "6208", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -79443,7 +79469,7 @@ "isHttpMetadata": false }, { - "$id": "6207", + "$id": "6209", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -79481,7 +79507,7 @@ "isHttpMetadata": false }, { - "$id": "6208", + "$id": "6210", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -79518,13 +79544,13 @@ "isHttpMetadata": false }, { - "$id": "6209", + "$id": "6211", "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": "6210", + "$id": "6212", "kind": "nullable", "type": { "$ref": "961" @@ -79545,16 +79571,16 @@ "isHttpMetadata": false }, { - "$id": "6211", + "$id": "6213", "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": "6212", + "$id": "6214", "kind": "nullable", "type": { - "$id": "6213", + "$id": "6215", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79576,13 +79602,13 @@ "isHttpMetadata": false }, { - "$id": "6214", + "$id": "6216", "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": "6215", + "$id": "6217", "kind": "nullable", "type": { "$ref": "2394" @@ -79603,16 +79629,16 @@ "isHttpMetadata": false }, { - "$id": "6216", + "$id": "6218", "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": "6217", + "$id": "6219", "kind": "nullable", "type": { - "$id": "6218", + "$id": "6220", "kind": "model", "name": "CreateThreadAndRunRequestToolResources1", "namespace": "OpenAI", @@ -79621,12 +79647,12 @@ "decorators": [], "properties": [ { - "$id": "6219", + "$id": "6221", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6220", + "$id": "6222", "kind": "model", "name": "CreateThreadAndRunRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -79635,7 +79661,7 @@ "decorators": [], "properties": [ { - "$id": "6221", + "$id": "6223", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -79672,7 +79698,7 @@ "isHttpMetadata": false }, { - "$id": "6222", + "$id": "6224", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -79710,7 +79736,7 @@ "isHttpMetadata": false }, { - "$id": "6223", + "$id": "6225", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -79732,16 +79758,16 @@ "isHttpMetadata": false }, { - "$id": "6224", + "$id": "6226", "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": "6225", + "$id": "6227", "kind": "nullable", "type": { - "$id": "6226", + "$id": "6228", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79763,16 +79789,16 @@ "isHttpMetadata": false }, { - "$id": "6227", + "$id": "6229", "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": "6228", + "$id": "6230", "kind": "nullable", "type": { - "$id": "6229", + "$id": "6231", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -79794,16 +79820,16 @@ "isHttpMetadata": false }, { - "$id": "6230", + "$id": "6232", "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": "6231", + "$id": "6233", "kind": "nullable", "type": { - "$id": "6232", + "$id": "6234", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79825,16 +79851,16 @@ "isHttpMetadata": false }, { - "$id": "6233", + "$id": "6235", "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": "6234", + "$id": "6236", "kind": "nullable", "type": { - "$id": "6235", + "$id": "6237", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79856,16 +79882,16 @@ "isHttpMetadata": false }, { - "$id": "6236", + "$id": "6238", "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": "6237", + "$id": "6239", "kind": "nullable", "type": { - "$id": "6238", + "$id": "6240", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79887,15 +79913,15 @@ "isHttpMetadata": false }, { - "$id": "6239", + "$id": "6241", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6240", + "$id": "6242", "kind": "nullable", "type": { - "$id": "6241", + "$id": "6243", "kind": "model", "name": "TruncationObject", "namespace": "OpenAI", @@ -79905,7 +79931,7 @@ "decorators": [], "properties": [ { - "$id": "6242", + "$id": "6244", "kind": "property", "name": "type", "serializedName": "type", @@ -79927,16 +79953,16 @@ "isHttpMetadata": false }, { - "$id": "6243", + "$id": "6245", "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": "6244", + "$id": "6246", "kind": "nullable", "type": { - "$id": "6245", + "$id": "6247", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79975,15 +80001,15 @@ "isHttpMetadata": false }, { - "$id": "6246", + "$id": "6248", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6247", + "$id": "6249", "kind": "nullable", "type": { - "$id": "6248", + "$id": "6250", "kind": "union", "name": "AssistantsApiToolChoiceOption", "variantTypes": [ @@ -79991,7 +80017,7 @@ "$ref": "999" }, { - "$id": "6249", + "$id": "6251", "kind": "model", "name": "AssistantsNamedToolChoice", "namespace": "OpenAI", @@ -80001,7 +80027,7 @@ "decorators": [], "properties": [ { - "$id": "6250", + "$id": "6252", "kind": "property", "name": "type", "serializedName": "type", @@ -80023,12 +80049,12 @@ "isHttpMetadata": false }, { - "$id": "6251", + "$id": "6253", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "6252", + "$id": "6254", "kind": "model", "name": "AssistantsNamedToolChoiceFunction", "namespace": "OpenAI", @@ -80037,13 +80063,13 @@ "decorators": [], "properties": [ { - "$id": "6253", + "$id": "6255", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "6254", + "$id": "6256", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80099,17 +80125,17 @@ "isHttpMetadata": false }, { - "$id": "6255", + "$id": "6257", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6256", + "$id": "6258", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6257", + "$id": "6259", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80131,12 +80157,12 @@ "isHttpMetadata": false }, { - "$id": "6258", + "$id": "6260", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6259", + "$id": "6261", "kind": "nullable", "type": { "$ref": "2455" @@ -80159,31 +80185,31 @@ ] }, { - "$ref": "6198" - }, - { - "$ref": "6203" + "$ref": "6200" }, { "$ref": "6205" }, { - "$ref": "6218" + "$ref": "6207" }, { "$ref": "6220" }, { - "$ref": "6241" + "$ref": "6222" }, { - "$ref": "6249" + "$ref": "6243" }, { - "$ref": "6252" + "$ref": "6251" }, { - "$id": "6260", + "$ref": "6254" + }, + { + "$id": "6262", "kind": "model", "name": "RunObject", "namespace": "OpenAI", @@ -80193,13 +80219,13 @@ "decorators": [], "properties": [ { - "$id": "6261", + "$id": "6263", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6262", + "$id": "6264", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80219,7 +80245,7 @@ "isHttpMetadata": false }, { - "$id": "6263", + "$id": "6265", "kind": "property", "name": "object", "serializedName": "object", @@ -80241,18 +80267,18 @@ "isHttpMetadata": false }, { - "$id": "6264", + "$id": "6266", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run was created.", "type": { - "$id": "6265", + "$id": "6267", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6266", + "$id": "6268", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80275,13 +80301,13 @@ "isHttpMetadata": false }, { - "$id": "6267", + "$id": "6269", "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": "6268", + "$id": "6270", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80301,13 +80327,13 @@ "isHttpMetadata": false }, { - "$id": "6269", + "$id": "6271", "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": "6270", + "$id": "6272", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80327,7 +80353,7 @@ "isHttpMetadata": false }, { - "$id": "6271", + "$id": "6273", "kind": "property", "name": "status", "serializedName": "status", @@ -80349,16 +80375,16 @@ "isHttpMetadata": false }, { - "$id": "6272", + "$id": "6274", "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": "6273", + "$id": "6275", "kind": "nullable", "type": { - "$id": "6274", + "$id": "6276", "kind": "model", "name": "RunObjectRequiredAction1", "namespace": "OpenAI", @@ -80367,7 +80393,7 @@ "decorators": [], "properties": [ { - "$id": "6275", + "$id": "6277", "kind": "property", "name": "type", "serializedName": "type", @@ -80389,13 +80415,13 @@ "isHttpMetadata": false }, { - "$id": "6276", + "$id": "6278", "kind": "property", "name": "submit_tool_outputs", "serializedName": "submit_tool_outputs", "doc": "Details on the tool outputs needed for this run to continue.", "type": { - "$id": "6277", + "$id": "6279", "kind": "model", "name": "RunObjectRequiredActionSubmitToolOutputs", "namespace": "OpenAI", @@ -80404,17 +80430,17 @@ "decorators": [], "properties": [ { - "$id": "6278", + "$id": "6280", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "doc": "A list of the relevant tool calls.", "type": { - "$id": "6279", + "$id": "6281", "kind": "array", "name": "ArrayRunToolCallObject", "valueType": { - "$id": "6280", + "$id": "6282", "kind": "model", "name": "RunToolCallObject", "namespace": "OpenAI", @@ -80424,13 +80450,13 @@ "decorators": [], "properties": [ { - "$id": "6281", + "$id": "6283", "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": "6282", + "$id": "6284", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80450,7 +80476,7 @@ "isHttpMetadata": false }, { - "$id": "6283", + "$id": "6285", "kind": "property", "name": "type", "serializedName": "type", @@ -80472,13 +80498,13 @@ "isHttpMetadata": false }, { - "$id": "6284", + "$id": "6286", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function definition.", "type": { - "$id": "6285", + "$id": "6287", "kind": "model", "name": "RunToolCallObjectFunction", "namespace": "OpenAI", @@ -80487,13 +80513,13 @@ "decorators": [], "properties": [ { - "$id": "6286", + "$id": "6288", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6287", + "$id": "6289", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80513,13 +80539,13 @@ "isHttpMetadata": false }, { - "$id": "6288", + "$id": "6290", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments that the model expects you to pass to the function.", "type": { - "$id": "6289", + "$id": "6291", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80604,16 +80630,16 @@ "isHttpMetadata": false }, { - "$id": "6290", + "$id": "6292", "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": "6291", + "$id": "6293", "kind": "nullable", "type": { - "$id": "6292", + "$id": "6294", "kind": "model", "name": "RunObjectLastError1", "namespace": "OpenAI", @@ -80622,7 +80648,7 @@ "decorators": [], "properties": [ { - "$id": "6293", + "$id": "6295", "kind": "property", "name": "code", "serializedName": "code", @@ -80644,13 +80670,13 @@ "isHttpMetadata": false }, { - "$id": "6294", + "$id": "6296", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6295", + "$id": "6297", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80687,21 +80713,21 @@ "isHttpMetadata": false }, { - "$id": "6296", + "$id": "6298", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the run will expire.", "type": { - "$id": "6297", + "$id": "6299", "kind": "nullable", "type": { - "$id": "6298", + "$id": "6300", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6299", + "$id": "6301", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80726,21 +80752,21 @@ "isHttpMetadata": false }, { - "$id": "6300", + "$id": "6302", "kind": "property", "name": "started_at", "serializedName": "started_at", "doc": "The Unix timestamp (in seconds) for when the run was started.", "type": { - "$id": "6301", + "$id": "6303", "kind": "nullable", "type": { - "$id": "6302", + "$id": "6304", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6303", + "$id": "6305", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80765,21 +80791,21 @@ "isHttpMetadata": false }, { - "$id": "6304", + "$id": "6306", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run was cancelled.", "type": { - "$id": "6305", + "$id": "6307", "kind": "nullable", "type": { - "$id": "6306", + "$id": "6308", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6307", + "$id": "6309", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80804,21 +80830,21 @@ "isHttpMetadata": false }, { - "$id": "6308", + "$id": "6310", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run failed.", "type": { - "$id": "6309", + "$id": "6311", "kind": "nullable", "type": { - "$id": "6310", + "$id": "6312", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6311", + "$id": "6313", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80843,21 +80869,21 @@ "isHttpMetadata": false }, { - "$id": "6312", + "$id": "6314", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run was completed.", "type": { - "$id": "6313", + "$id": "6315", "kind": "nullable", "type": { - "$id": "6314", + "$id": "6316", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6315", + "$id": "6317", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80882,16 +80908,16 @@ "isHttpMetadata": false }, { - "$id": "6316", + "$id": "6318", "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": "6317", + "$id": "6319", "kind": "nullable", "type": { - "$id": "6318", + "$id": "6320", "kind": "model", "name": "RunObjectIncompleteDetails1", "namespace": "OpenAI", @@ -80900,7 +80926,7 @@ "decorators": [], "properties": [ { - "$id": "6319", + "$id": "6321", "kind": "property", "name": "reason", "serializedName": "reason", @@ -80939,13 +80965,13 @@ "isHttpMetadata": false }, { - "$id": "6320", + "$id": "6322", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6321", + "$id": "6323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80965,13 +80991,13 @@ "isHttpMetadata": false }, { - "$id": "6322", + "$id": "6324", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The instructions that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6323", + "$id": "6325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80991,7 +81017,7 @@ "isHttpMetadata": false }, { - "$id": "6324", + "$id": "6326", "kind": "property", "name": "tools", "serializedName": "tools", @@ -81013,7 +81039,7 @@ "isHttpMetadata": false }, { - "$id": "6325", + "$id": "6327", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -81035,15 +81061,15 @@ "isHttpMetadata": false }, { - "$id": "6326", + "$id": "6328", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6327", + "$id": "6329", "kind": "nullable", "type": { - "$id": "6328", + "$id": "6330", "kind": "model", "name": "RunCompletionUsage", "namespace": "OpenAI", @@ -81053,13 +81079,13 @@ "decorators": [], "properties": [ { - "$id": "6329", + "$id": "6331", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run.", "type": { - "$id": "6330", + "$id": "6332", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81079,13 +81105,13 @@ "isHttpMetadata": false }, { - "$id": "6331", + "$id": "6333", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run.", "type": { - "$id": "6332", + "$id": "6334", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81105,13 +81131,13 @@ "isHttpMetadata": false }, { - "$id": "6333", + "$id": "6335", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6334", + "$id": "6336", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81148,16 +81174,16 @@ "isHttpMetadata": false }, { - "$id": "6335", + "$id": "6337", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used for this run. If not set, defaults to 1.", "type": { - "$id": "6336", + "$id": "6338", "kind": "nullable", "type": { - "$id": "6337", + "$id": "6339", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81179,16 +81205,16 @@ "isHttpMetadata": false }, { - "$id": "6338", + "$id": "6340", "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": "6339", + "$id": "6341", "kind": "nullable", "type": { - "$id": "6340", + "$id": "6342", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81210,16 +81236,16 @@ "isHttpMetadata": false }, { - "$id": "6341", + "$id": "6343", "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": "6342", + "$id": "6344", "kind": "nullable", "type": { - "$id": "6343", + "$id": "6345", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81241,16 +81267,16 @@ "isHttpMetadata": false }, { - "$id": "6344", + "$id": "6346", "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": "6345", + "$id": "6347", "kind": "nullable", "type": { - "$id": "6346", + "$id": "6348", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81272,15 +81298,15 @@ "isHttpMetadata": false }, { - "$id": "6347", + "$id": "6349", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6348", + "$id": "6350", "kind": "nullable", "type": { - "$ref": "6241" + "$ref": "6243" }, "namespace": "OpenAI" }, @@ -81298,15 +81324,15 @@ "isHttpMetadata": false }, { - "$id": "6349", + "$id": "6351", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6350", + "$id": "6352", "kind": "nullable", "type": { - "$ref": "6248" + "$ref": "6250" }, "namespace": "OpenAI" }, @@ -81324,17 +81350,17 @@ "isHttpMetadata": false }, { - "$id": "6351", + "$id": "6353", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6352", + "$id": "6354", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6353", + "$id": "6355", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81356,12 +81382,12 @@ "isHttpMetadata": false }, { - "$id": "6354", + "$id": "6356", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6355", + "$id": "6357", "kind": "nullable", "type": { "$ref": "2455" @@ -81384,28 +81410,28 @@ ] }, { - "$ref": "6274" + "$ref": "6276" }, { - "$ref": "6277" + "$ref": "6279" }, { - "$ref": "6280" + "$ref": "6282" }, { - "$ref": "6285" + "$ref": "6287" }, { - "$ref": "6292" + "$ref": "6294" }, { - "$ref": "6318" + "$ref": "6320" }, { - "$ref": "6328" + "$ref": "6330" }, { - "$id": "6356", + "$id": "6358", "kind": "model", "name": "CreateRunRequest", "namespace": "OpenAI", @@ -81414,13 +81440,13 @@ "decorators": [], "properties": [ { - "$id": "6357", + "$id": "6359", "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": "6358", + "$id": "6360", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81440,13 +81466,13 @@ "isHttpMetadata": false }, { - "$id": "6359", + "$id": "6361", "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": "6360", + "$id": "6362", "kind": "nullable", "type": { "$ref": "15" @@ -81467,12 +81493,12 @@ "isHttpMetadata": false }, { - "$id": "6361", + "$id": "6363", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "6362", + "$id": "6364", "kind": "nullable", "type": { "$ref": "53" @@ -81493,16 +81519,16 @@ "isHttpMetadata": false }, { - "$id": "6363", + "$id": "6365", "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": "6364", + "$id": "6366", "kind": "nullable", "type": { - "$id": "6365", + "$id": "6367", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81524,16 +81550,16 @@ "isHttpMetadata": false }, { - "$id": "6366", + "$id": "6368", "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": "6367", + "$id": "6369", "kind": "nullable", "type": { - "$id": "6368", + "$id": "6370", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81555,16 +81581,16 @@ "isHttpMetadata": false }, { - "$id": "6369", + "$id": "6371", "kind": "property", "name": "additional_messages", "serializedName": "additional_messages", "doc": "Adds additional messages to the thread before creating the run.", "type": { - "$id": "6370", + "$id": "6372", "kind": "nullable", "type": { - "$ref": "6200" + "$ref": "6202" }, "namespace": "OpenAI" }, @@ -81582,13 +81608,13 @@ "isHttpMetadata": false }, { - "$id": "6371", + "$id": "6373", "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": "6372", + "$id": "6374", "kind": "nullable", "type": { "$ref": "2394" @@ -81609,7 +81635,7 @@ "isHttpMetadata": false }, { - "$id": "6373", + "$id": "6375", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -81631,16 +81657,16 @@ "isHttpMetadata": false }, { - "$id": "6374", + "$id": "6376", "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": "6375", + "$id": "6377", "kind": "nullable", "type": { - "$id": "6376", + "$id": "6378", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81662,16 +81688,16 @@ "isHttpMetadata": false }, { - "$id": "6377", + "$id": "6379", "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": "6378", + "$id": "6380", "kind": "nullable", "type": { - "$id": "6379", + "$id": "6381", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -81693,16 +81719,16 @@ "isHttpMetadata": false }, { - "$id": "6380", + "$id": "6382", "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": "6381", + "$id": "6383", "kind": "nullable", "type": { - "$id": "6382", + "$id": "6384", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81724,16 +81750,16 @@ "isHttpMetadata": false }, { - "$id": "6383", + "$id": "6385", "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": "6384", + "$id": "6386", "kind": "nullable", "type": { - "$id": "6385", + "$id": "6387", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81755,16 +81781,16 @@ "isHttpMetadata": false }, { - "$id": "6386", + "$id": "6388", "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": "6387", + "$id": "6389", "kind": "nullable", "type": { - "$id": "6388", + "$id": "6390", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81786,15 +81812,15 @@ "isHttpMetadata": false }, { - "$id": "6389", + "$id": "6391", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6390", + "$id": "6392", "kind": "nullable", "type": { - "$ref": "6241" + "$ref": "6243" }, "namespace": "OpenAI" }, @@ -81812,15 +81838,15 @@ "isHttpMetadata": false }, { - "$id": "6391", + "$id": "6393", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6392", + "$id": "6394", "kind": "nullable", "type": { - "$ref": "6248" + "$ref": "6250" }, "namespace": "OpenAI" }, @@ -81838,17 +81864,17 @@ "isHttpMetadata": false }, { - "$id": "6393", + "$id": "6395", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6394", + "$id": "6396", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6395", + "$id": "6397", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81870,12 +81896,12 @@ "isHttpMetadata": false }, { - "$id": "6396", + "$id": "6398", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6397", + "$id": "6399", "kind": "nullable", "type": { "$ref": "2455" @@ -81898,7 +81924,7 @@ ] }, { - "$id": "6398", + "$id": "6400", "kind": "model", "name": "ListRunsResponse", "namespace": "OpenAI", @@ -81907,7 +81933,7 @@ "decorators": [], "properties": [ { - "$id": "6399", + "$id": "6401", "kind": "property", "name": "object", "serializedName": "object", @@ -81928,16 +81954,16 @@ "isHttpMetadata": false }, { - "$id": "6400", + "$id": "6402", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6401", + "$id": "6403", "kind": "array", "name": "ArrayRunObject", "valueType": { - "$ref": "6260" + "$ref": "6262" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -81956,12 +81982,12 @@ "isHttpMetadata": false }, { - "$id": "6402", + "$id": "6404", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6403", + "$id": "6405", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81981,12 +82007,12 @@ "isHttpMetadata": false }, { - "$id": "6404", + "$id": "6406", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6405", + "$id": "6407", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82006,12 +82032,12 @@ "isHttpMetadata": false }, { - "$id": "6406", + "$id": "6408", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6407", + "$id": "6409", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -82033,7 +82059,7 @@ ] }, { - "$id": "6408", + "$id": "6410", "kind": "model", "name": "ModifyRunRequest", "namespace": "OpenAI", @@ -82042,7 +82068,7 @@ "decorators": [], "properties": [ { - "$id": "6409", + "$id": "6411", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -82066,7 +82092,7 @@ ] }, { - "$id": "6410", + "$id": "6412", "kind": "model", "name": "SubmitToolOutputsRunRequest", "namespace": "OpenAI", @@ -82075,17 +82101,17 @@ "decorators": [], "properties": [ { - "$id": "6411", + "$id": "6413", "kind": "property", "name": "tool_outputs", "serializedName": "tool_outputs", "doc": "A list of tools for which the outputs are being submitted.", "type": { - "$id": "6412", + "$id": "6414", "kind": "array", "name": "Array38", "valueType": { - "$id": "6413", + "$id": "6415", "kind": "model", "name": "SubmitToolOutputsRunRequestToolOutput", "namespace": "OpenAI", @@ -82094,13 +82120,13 @@ "decorators": [], "properties": [ { - "$id": "6414", + "$id": "6416", "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": "6415", + "$id": "6417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82120,13 +82146,13 @@ "isHttpMetadata": false }, { - "$id": "6416", + "$id": "6418", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output of the tool call to be submitted to continue the run.", "type": { - "$id": "6417", + "$id": "6419", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82164,16 +82190,16 @@ "isHttpMetadata": false }, { - "$id": "6418", + "$id": "6420", "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": "6419", + "$id": "6421", "kind": "nullable", "type": { - "$id": "6420", + "$id": "6422", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -82197,10 +82223,10 @@ ] }, { - "$ref": "6413" + "$ref": "6415" }, { - "$id": "6421", + "$id": "6423", "kind": "model", "name": "ListRunStepsResponse", "namespace": "OpenAI", @@ -82209,7 +82235,7 @@ "decorators": [], "properties": [ { - "$id": "6422", + "$id": "6424", "kind": "property", "name": "object", "serializedName": "object", @@ -82230,16 +82256,16 @@ "isHttpMetadata": false }, { - "$id": "6423", + "$id": "6425", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6424", + "$id": "6426", "kind": "array", "name": "ArrayRunStepObject", "valueType": { - "$id": "6425", + "$id": "6427", "kind": "model", "name": "RunStepObject", "namespace": "OpenAI", @@ -82249,13 +82275,13 @@ "decorators": [], "properties": [ { - "$id": "6426", + "$id": "6428", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "6427", + "$id": "6429", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82275,7 +82301,7 @@ "isHttpMetadata": false }, { - "$id": "6428", + "$id": "6430", "kind": "property", "name": "object", "serializedName": "object", @@ -82297,18 +82323,18 @@ "isHttpMetadata": false }, { - "$id": "6429", + "$id": "6431", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run step was created.", "type": { - "$id": "6430", + "$id": "6432", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6431", + "$id": "6433", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82331,13 +82357,13 @@ "isHttpMetadata": false }, { - "$id": "6432", + "$id": "6434", "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": "6433", + "$id": "6435", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82357,13 +82383,13 @@ "isHttpMetadata": false }, { - "$id": "6434", + "$id": "6436", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "6435", + "$id": "6437", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82383,13 +82409,13 @@ "isHttpMetadata": false }, { - "$id": "6436", + "$id": "6438", "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": "6437", + "$id": "6439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82409,7 +82435,7 @@ "isHttpMetadata": false }, { - "$id": "6438", + "$id": "6440", "kind": "property", "name": "type", "serializedName": "type", @@ -82431,7 +82457,7 @@ "isHttpMetadata": false }, { - "$id": "6439", + "$id": "6441", "kind": "property", "name": "status", "serializedName": "status", @@ -82453,13 +82479,13 @@ "isHttpMetadata": false }, { - "$id": "6440", + "$id": "6442", "kind": "property", "name": "step_details", "serializedName": "step_details", "doc": "The details of the run step.", "type": { - "$id": "6441", + "$id": "6443", "kind": "model", "name": "RunStepObjectStepDetails", "namespace": "OpenAI", @@ -82468,7 +82494,7 @@ "doc": "Abstractly represents a run step details object.", "decorators": [], "discriminatorProperty": { - "$id": "6442", + "$id": "6444", "kind": "property", "name": "type", "serializedName": "type", @@ -82491,12 +82517,12 @@ }, "properties": [ { - "$ref": "6442" + "$ref": "6444" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "6443", + "$id": "6445", "kind": "model", "name": "RunStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -82506,17 +82532,17 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "6441" + "$ref": "6443" }, "properties": [ { - "$id": "6444", + "$id": "6446", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `message_creation`.", "type": { - "$id": "6445", + "$id": "6447", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", @@ -82524,14 +82550,14 @@ "$ref": "1041" }, "enumType": { - "$id": "6446", + "$id": "6448", "kind": "enum", "decorators": [], "name": "RunStepDetailsType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6447", + "$id": "6449", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -82540,29 +82566,29 @@ }, "values": [ { - "$id": "6448", + "$id": "6450", "kind": "enumvalue", "decorators": [], "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "6447" + "$ref": "6449" }, "enumType": { - "$ref": "6446" + "$ref": "6448" } }, { - "$id": "6449", + "$id": "6451", "kind": "enumvalue", "decorators": [], "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "6447" + "$ref": "6449" }, "enumType": { - "$ref": "6446" + "$ref": "6448" } } ], @@ -82591,12 +82617,12 @@ "isHttpMetadata": false }, { - "$id": "6450", + "$id": "6452", "kind": "property", "name": "message_creation", "serializedName": "message_creation", "type": { - "$id": "6451", + "$id": "6453", "kind": "model", "name": "RunStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -82605,13 +82631,13 @@ "decorators": [], "properties": [ { - "$id": "6452", + "$id": "6454", "kind": "property", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "6453", + "$id": "6455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82648,7 +82674,7 @@ ] }, "tool_calls": { - "$id": "6454", + "$id": "6456", "kind": "model", "name": "RunStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -82658,17 +82684,17 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "6441" + "$ref": "6443" }, "properties": [ { - "$id": "6455", + "$id": "6457", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `tool_calls`.", "type": { - "$id": "6456", + "$id": "6458", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", @@ -82676,7 +82702,7 @@ "$ref": "1041" }, "enumType": { - "$ref": "6446" + "$ref": "6448" }, "decorators": [] }, @@ -82694,17 +82720,17 @@ "isHttpMetadata": false }, { - "$id": "6457", + "$id": "6459", "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": "6458", + "$id": "6460", "kind": "array", "name": "ArrayRunStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "6459", + "$id": "6461", "kind": "model", "name": "RunStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -82713,7 +82739,7 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "6460", + "$id": "6462", "kind": "property", "name": "type", "serializedName": "type", @@ -82736,16 +82762,16 @@ }, "properties": [ { - "$ref": "6460" + "$ref": "6462" }, { - "$id": "6461", + "$id": "6463", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "6462", + "$id": "6464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82767,7 +82793,7 @@ ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "6463", + "$id": "6465", "kind": "model", "name": "RunStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -82777,17 +82803,17 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "6459" + "$ref": "6461" }, "properties": [ { - "$id": "6464", + "$id": "6466", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool call. This is always going to be `code_interpreter` for this type of tool call.", "type": { - "$id": "6465", + "$id": "6467", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -82795,14 +82821,14 @@ "$ref": "1045" }, "enumType": { - "$id": "6466", + "$id": "6468", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6467", + "$id": "6469", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -82811,42 +82837,42 @@ }, "values": [ { - "$id": "6468", + "$id": "6470", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "6467" + "$ref": "6469" }, "enumType": { - "$ref": "6466" + "$ref": "6468" } }, { - "$id": "6469", + "$id": "6471", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "6467" + "$ref": "6469" }, "enumType": { - "$ref": "6466" + "$ref": "6468" } }, { - "$id": "6470", + "$id": "6472", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "6467" + "$ref": "6469" }, "enumType": { - "$ref": "6466" + "$ref": "6468" } } ], @@ -82875,13 +82901,13 @@ "isHttpMetadata": false }, { - "$id": "6471", + "$id": "6473", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "6472", + "$id": "6474", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -82890,13 +82916,13 @@ "decorators": [], "properties": [ { - "$id": "6473", + "$id": "6475", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "6474", + "$id": "6476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82916,17 +82942,17 @@ "isHttpMetadata": false }, { - "$id": "6475", + "$id": "6477", "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": "6476", + "$id": "6478", "kind": "array", "name": "ArrayRunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "6477", + "$id": "6479", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -82935,7 +82961,7 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "6478", + "$id": "6480", "kind": "property", "name": "type", "serializedName": "type", @@ -82958,12 +82984,12 @@ }, "properties": [ { - "$ref": "6478" + "$ref": "6480" } ], "discriminatedSubtypes": { "logs": { - "$id": "6479", + "$id": "6481", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -82973,17 +82999,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "6477" + "$ref": "6479" }, "properties": [ { - "$id": "6480", + "$id": "6482", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `logs`.", "type": { - "$id": "6481", + "$id": "6483", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -82991,14 +83017,14 @@ "$ref": "1050" }, "enumType": { - "$id": "6482", + "$id": "6484", "kind": "enum", "decorators": [], "name": "RunStepDetailsCodeInterpreterOutputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6483", + "$id": "6485", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -83007,29 +83033,29 @@ }, "values": [ { - "$id": "6484", + "$id": "6486", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "6483" + "$ref": "6485" }, "enumType": { - "$ref": "6482" + "$ref": "6484" } }, { - "$id": "6485", + "$id": "6487", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6483" + "$ref": "6485" }, "enumType": { - "$ref": "6482" + "$ref": "6484" } } ], @@ -83058,13 +83084,13 @@ "isHttpMetadata": false }, { - "$id": "6486", + "$id": "6488", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "6487", + "$id": "6489", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83086,7 +83112,7 @@ ] }, "image": { - "$id": "6488", + "$id": "6490", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -83095,17 +83121,17 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "6477" + "$ref": "6479" }, "properties": [ { - "$id": "6489", + "$id": "6491", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image`.", "type": { - "$id": "6490", + "$id": "6492", "kind": "enumvalue", "name": "image", "value": "image", @@ -83113,7 +83139,7 @@ "$ref": "1050" }, "enumType": { - "$ref": "6482" + "$ref": "6484" }, "decorators": [] }, @@ -83131,12 +83157,12 @@ "isHttpMetadata": false }, { - "$id": "6491", + "$id": "6493", "kind": "property", "name": "image", "serializedName": "image", "type": { - "$id": "6492", + "$id": "6494", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -83145,13 +83171,13 @@ "decorators": [], "properties": [ { - "$id": "6493", + "$id": "6495", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "6494", + "$id": "6496", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83223,7 +83249,7 @@ ] }, "file_search": { - "$id": "6495", + "$id": "6497", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -83232,17 +83258,17 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "6459" + "$ref": "6461" }, "properties": [ { - "$id": "6496", + "$id": "6498", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool call. This is always going to be `file_search` for this type of tool call.", "type": { - "$id": "6497", + "$id": "6499", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -83250,7 +83276,7 @@ "$ref": "1045" }, "enumType": { - "$ref": "6466" + "$ref": "6468" }, "decorators": [] }, @@ -83268,13 +83294,13 @@ "isHttpMetadata": false }, { - "$id": "6498", + "$id": "6500", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "6499", + "$id": "6501", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -83283,12 +83309,12 @@ "decorators": [], "properties": [ { - "$id": "6500", + "$id": "6502", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "6501", + "$id": "6503", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchRankingOptionsObject", "namespace": "OpenAI", @@ -83298,7 +83324,7 @@ "decorators": [], "properties": [ { - "$id": "6502", + "$id": "6504", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -83319,13 +83345,13 @@ "isHttpMetadata": false }, { - "$id": "6503", + "$id": "6505", "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": "6504", + "$id": "6506", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -83360,17 +83386,17 @@ "isHttpMetadata": false }, { - "$id": "6505", + "$id": "6507", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search.", "type": { - "$id": "6506", + "$id": "6508", "kind": "array", "name": "ArrayRunStepDetailsToolCallsFileSearchResultObject", "valueType": { - "$id": "6507", + "$id": "6509", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObject", "namespace": "OpenAI", @@ -83380,13 +83406,13 @@ "decorators": [], "properties": [ { - "$id": "6508", + "$id": "6510", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that result was found in.", "type": { - "$id": "6509", + "$id": "6511", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83406,13 +83432,13 @@ "isHttpMetadata": false }, { - "$id": "6510", + "$id": "6512", "kind": "property", "name": "file_name", "serializedName": "file_name", "doc": "The name of the file that result was found in.", "type": { - "$id": "6511", + "$id": "6513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83432,13 +83458,13 @@ "isHttpMetadata": false }, { - "$id": "6512", + "$id": "6514", "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": "6513", + "$id": "6515", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -83458,17 +83484,17 @@ "isHttpMetadata": false }, { - "$id": "6514", + "$id": "6516", "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": "6515", + "$id": "6517", "kind": "array", "name": "Array39", "valueType": { - "$id": "6516", + "$id": "6518", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObjectContent", "namespace": "OpenAI", @@ -83477,13 +83503,13 @@ "decorators": [], "properties": [ { - "$id": "6517", + "$id": "6519", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content.", "type": { - "$id": "6518", + "$id": "6520", "kind": "enumvalue", "name": "text", "value": "text", @@ -83491,14 +83517,14 @@ "$ref": "1457" }, "enumType": { - "$id": "6519", + "$id": "6521", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6520", + "$id": "6522", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -83507,16 +83533,16 @@ }, "values": [ { - "$id": "6521", + "$id": "6523", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "enumType": { - "$ref": "6519" + "$ref": "6521" }, "valueType": { - "$ref": "6520" + "$ref": "6522" } } ], @@ -83545,13 +83571,13 @@ "isHttpMetadata": false }, { - "$id": "6522", + "$id": "6524", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content of the file.", "type": { - "$id": "6523", + "$id": "6525", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83624,7 +83650,7 @@ ] }, "function": { - "$id": "6524", + "$id": "6526", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -83633,17 +83659,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6459" + "$ref": "6461" }, "properties": [ { - "$id": "6525", + "$id": "6527", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool call. This is always going to be `function` for this type of tool call.", "type": { - "$id": "6526", + "$id": "6528", "kind": "enumvalue", "name": "function", "value": "function", @@ -83651,7 +83677,7 @@ "$ref": "1045" }, "enumType": { - "$ref": "6466" + "$ref": "6468" }, "decorators": [] }, @@ -83669,13 +83695,13 @@ "isHttpMetadata": false }, { - "$id": "6527", + "$id": "6529", "kind": "property", "name": "function", "serializedName": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "6528", + "$id": "6530", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -83684,13 +83710,13 @@ "decorators": [], "properties": [ { - "$id": "6529", + "$id": "6531", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6530", + "$id": "6532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83710,13 +83736,13 @@ "isHttpMetadata": false }, { - "$id": "6531", + "$id": "6533", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "6532", + "$id": "6534", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83736,16 +83762,16 @@ "isHttpMetadata": false }, { - "$id": "6533", + "$id": "6535", "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": "6534", + "$id": "6536", "kind": "nullable", "type": { - "$id": "6535", + "$id": "6537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83819,16 +83845,16 @@ "isHttpMetadata": false }, { - "$id": "6536", + "$id": "6538", "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": "6537", + "$id": "6539", "kind": "nullable", "type": { - "$id": "6538", + "$id": "6540", "kind": "model", "name": "RunStepObjectLastError1", "namespace": "OpenAI", @@ -83837,7 +83863,7 @@ "decorators": [], "properties": [ { - "$id": "6539", + "$id": "6541", "kind": "property", "name": "code", "serializedName": "code", @@ -83859,13 +83885,13 @@ "isHttpMetadata": false }, { - "$id": "6540", + "$id": "6542", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6541", + "$id": "6543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83902,21 +83928,21 @@ "isHttpMetadata": false }, { - "$id": "6542", + "$id": "6544", "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": "6543", + "$id": "6545", "kind": "nullable", "type": { - "$id": "6544", + "$id": "6546", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6545", + "$id": "6547", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83941,21 +83967,21 @@ "isHttpMetadata": false }, { - "$id": "6546", + "$id": "6548", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run step was cancelled.", "type": { - "$id": "6547", + "$id": "6549", "kind": "nullable", "type": { - "$id": "6548", + "$id": "6550", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6549", + "$id": "6551", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83980,21 +84006,21 @@ "isHttpMetadata": false }, { - "$id": "6550", + "$id": "6552", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run step failed.", "type": { - "$id": "6551", + "$id": "6553", "kind": "nullable", "type": { - "$id": "6552", + "$id": "6554", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6553", + "$id": "6555", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84019,21 +84045,21 @@ "isHttpMetadata": false }, { - "$id": "6554", + "$id": "6556", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run step completed.", "type": { - "$id": "6555", + "$id": "6557", "kind": "nullable", "type": { - "$id": "6556", + "$id": "6558", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6557", + "$id": "6559", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84058,7 +84084,7 @@ "isHttpMetadata": false }, { - "$id": "6558", + "$id": "6560", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -84080,15 +84106,15 @@ "isHttpMetadata": false }, { - "$id": "6559", + "$id": "6561", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6560", + "$id": "6562", "kind": "nullable", "type": { - "$id": "6561", + "$id": "6563", "kind": "model", "name": "RunStepCompletionUsage", "namespace": "OpenAI", @@ -84098,13 +84124,13 @@ "decorators": [], "properties": [ { - "$id": "6562", + "$id": "6564", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run step.", "type": { - "$id": "6563", + "$id": "6565", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84124,13 +84150,13 @@ "isHttpMetadata": false }, { - "$id": "6564", + "$id": "6566", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run step.", "type": { - "$id": "6565", + "$id": "6567", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84150,13 +84176,13 @@ "isHttpMetadata": false }, { - "$id": "6566", + "$id": "6568", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6567", + "$id": "6569", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84211,12 +84237,12 @@ "isHttpMetadata": false }, { - "$id": "6568", + "$id": "6570", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6569", + "$id": "6571", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84236,12 +84262,12 @@ "isHttpMetadata": false }, { - "$id": "6570", + "$id": "6572", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6571", + "$id": "6573", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84261,12 +84287,12 @@ "isHttpMetadata": false }, { - "$id": "6572", + "$id": "6574", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6573", + "$id": "6575", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -84288,70 +84314,70 @@ ] }, { - "$ref": "6425" - }, - { - "$ref": "6441" + "$ref": "6427" }, { "$ref": "6443" }, { - "$ref": "6451" + "$ref": "6445" }, { - "$ref": "6454" + "$ref": "6453" }, { - "$ref": "6459" + "$ref": "6456" }, { - "$ref": "6463" + "$ref": "6461" }, { - "$ref": "6472" + "$ref": "6465" }, { - "$ref": "6477" + "$ref": "6474" }, { "$ref": "6479" }, { - "$ref": "6488" + "$ref": "6481" }, { - "$ref": "6492" + "$ref": "6490" }, { - "$ref": "6495" + "$ref": "6494" }, { - "$ref": "6499" + "$ref": "6497" }, { "$ref": "6501" }, { - "$ref": "6507" + "$ref": "6503" }, { - "$ref": "6516" + "$ref": "6509" }, { - "$ref": "6524" + "$ref": "6518" }, { - "$ref": "6528" + "$ref": "6526" }, { - "$ref": "6538" + "$ref": "6530" }, { - "$ref": "6561" + "$ref": "6540" }, { - "$id": "6574", + "$ref": "6563" + }, + { + "$id": "6576", "kind": "model", "name": "ThreadObject", "namespace": "OpenAI", @@ -84361,13 +84387,13 @@ "decorators": [], "properties": [ { - "$id": "6575", + "$id": "6577", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6576", + "$id": "6578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84387,7 +84413,7 @@ "isHttpMetadata": false }, { - "$id": "6577", + "$id": "6579", "kind": "property", "name": "object", "serializedName": "object", @@ -84409,18 +84435,18 @@ "isHttpMetadata": false }, { - "$id": "6578", + "$id": "6580", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the thread was created.", "type": { - "$id": "6579", + "$id": "6581", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6580", + "$id": "6582", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84443,16 +84469,16 @@ "isHttpMetadata": false }, { - "$id": "6581", + "$id": "6583", "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": "6582", + "$id": "6584", "kind": "nullable", "type": { - "$id": "6583", + "$id": "6585", "kind": "model", "name": "ThreadObjectToolResources1", "namespace": "OpenAI", @@ -84461,12 +84487,12 @@ "decorators": [], "properties": [ { - "$id": "6584", + "$id": "6586", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6585", + "$id": "6587", "kind": "model", "name": "ThreadObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -84475,7 +84501,7 @@ "decorators": [], "properties": [ { - "$id": "6586", + "$id": "6588", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -84512,12 +84538,12 @@ "isHttpMetadata": false }, { - "$id": "6587", + "$id": "6589", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "6588", + "$id": "6590", "kind": "model", "name": "ThreadObjectToolResourcesFileSearch", "namespace": "OpenAI", @@ -84526,7 +84552,7 @@ "decorators": [], "properties": [ { - "$id": "6589", + "$id": "6591", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", @@ -84580,7 +84606,7 @@ "isHttpMetadata": false }, { - "$id": "6590", + "$id": "6592", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -84604,16 +84630,16 @@ ] }, { - "$ref": "6583" + "$ref": "6585" }, { - "$ref": "6585" + "$ref": "6587" }, { - "$ref": "6588" + "$ref": "6590" }, { - "$id": "6591", + "$id": "6593", "kind": "model", "name": "ModifyThreadRequest", "namespace": "OpenAI", @@ -84622,16 +84648,16 @@ "decorators": [], "properties": [ { - "$id": "6592", + "$id": "6594", "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": "6593", + "$id": "6595", "kind": "nullable", "type": { - "$id": "6594", + "$id": "6596", "kind": "model", "name": "ModifyThreadRequestToolResources1", "namespace": "OpenAI", @@ -84640,12 +84666,12 @@ "decorators": [], "properties": [ { - "$id": "6595", + "$id": "6597", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6596", + "$id": "6598", "kind": "model", "name": "ModifyThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -84654,7 +84680,7 @@ "decorators": [], "properties": [ { - "$id": "6597", + "$id": "6599", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -84691,7 +84717,7 @@ "isHttpMetadata": false }, { - "$id": "6598", + "$id": "6600", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -84729,7 +84755,7 @@ "isHttpMetadata": false }, { - "$id": "6599", + "$id": "6601", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -84753,13 +84779,13 @@ ] }, { - "$ref": "6594" + "$ref": "6596" }, { - "$ref": "6596" + "$ref": "6598" }, { - "$id": "6600", + "$id": "6602", "kind": "model", "name": "DeleteThreadResponse", "namespace": "OpenAI", @@ -84768,12 +84794,12 @@ "decorators": [], "properties": [ { - "$id": "6601", + "$id": "6603", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6602", + "$id": "6604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84793,12 +84819,12 @@ "isHttpMetadata": false }, { - "$id": "6603", + "$id": "6605", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6604", + "$id": "6606", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -84818,7 +84844,7 @@ "isHttpMetadata": false }, { - "$id": "6605", + "$id": "6607", "kind": "property", "name": "object", "serializedName": "object", @@ -84841,7 +84867,7 @@ ] }, { - "$id": "6606", + "$id": "6608", "kind": "model", "name": "ListVectorStoresResponse", "namespace": "OpenAI", @@ -84850,7 +84876,7 @@ "decorators": [], "properties": [ { - "$id": "6607", + "$id": "6609", "kind": "property", "name": "object", "serializedName": "object", @@ -84871,16 +84897,16 @@ "isHttpMetadata": false }, { - "$id": "6608", + "$id": "6610", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6609", + "$id": "6611", "kind": "array", "name": "ArrayVectorStoreObject", "valueType": { - "$id": "6610", + "$id": "6612", "kind": "model", "name": "VectorStoreObject", "namespace": "OpenAI", @@ -84890,13 +84916,13 @@ "decorators": [], "properties": [ { - "$id": "6611", + "$id": "6613", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6612", + "$id": "6614", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84916,7 +84942,7 @@ "isHttpMetadata": false }, { - "$id": "6613", + "$id": "6615", "kind": "property", "name": "object", "serializedName": "object", @@ -84938,18 +84964,18 @@ "isHttpMetadata": false }, { - "$id": "6614", + "$id": "6616", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store was created.", "type": { - "$id": "6615", + "$id": "6617", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6616", + "$id": "6618", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84972,13 +84998,13 @@ "isHttpMetadata": false }, { - "$id": "6617", + "$id": "6619", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6618", + "$id": "6620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84998,13 +85024,13 @@ "isHttpMetadata": false }, { - "$id": "6619", + "$id": "6621", "kind": "property", "name": "usage_bytes", "serializedName": "usage_bytes", "doc": "The total number of bytes used by the files in the vector store.", "type": { - "$id": "6620", + "$id": "6622", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85024,12 +85050,12 @@ "isHttpMetadata": false }, { - "$id": "6621", + "$id": "6623", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6622", + "$id": "6624", "kind": "model", "name": "VectorStoreObjectFileCounts", "namespace": "OpenAI", @@ -85038,13 +85064,13 @@ "decorators": [], "properties": [ { - "$id": "6623", + "$id": "6625", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6624", + "$id": "6626", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85064,13 +85090,13 @@ "isHttpMetadata": false }, { - "$id": "6625", + "$id": "6627", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been successfully processed.", "type": { - "$id": "6626", + "$id": "6628", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85090,13 +85116,13 @@ "isHttpMetadata": false }, { - "$id": "6627", + "$id": "6629", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6628", + "$id": "6630", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85116,13 +85142,13 @@ "isHttpMetadata": false }, { - "$id": "6629", + "$id": "6631", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that were cancelled.", "type": { - "$id": "6630", + "$id": "6632", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85142,13 +85168,13 @@ "isHttpMetadata": false }, { - "$id": "6631", + "$id": "6633", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6632", + "$id": "6634", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85183,7 +85209,7 @@ "isHttpMetadata": false }, { - "$id": "6633", + "$id": "6635", "kind": "property", "name": "status", "serializedName": "status", @@ -85205,12 +85231,12 @@ "isHttpMetadata": false }, { - "$id": "6634", + "$id": "6636", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6635", + "$id": "6637", "kind": "model", "name": "VectorStoreExpirationAfter", "namespace": "OpenAI", @@ -85220,13 +85246,13 @@ "decorators": [], "properties": [ { - "$id": "6636", + "$id": "6638", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "Anchor timestamp after which the expiration policy applies. Supported anchors: `last_active_at`.", "type": { - "$id": "6637", + "$id": "6639", "kind": "enumvalue", "name": "last_active_at", "value": "last_active_at", @@ -85234,14 +85260,14 @@ "$ref": "1460" }, "enumType": { - "$id": "6638", + "$id": "6640", "kind": "enum", "decorators": [], "name": "VectorStoreExpirationAnchor", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6639", + "$id": "6641", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -85250,16 +85276,16 @@ }, "values": [ { - "$id": "6640", + "$id": "6642", "kind": "enumvalue", "decorators": [], "name": "last_active_at", "value": "last_active_at", "enumType": { - "$ref": "6638" + "$ref": "6640" }, "valueType": { - "$ref": "6639" + "$ref": "6641" } } ], @@ -85288,13 +85314,13 @@ "isHttpMetadata": false }, { - "$id": "6641", + "$id": "6643", "kind": "property", "name": "days", "serializedName": "days", "doc": "The number of days after the anchor time that the vector store will expire.", "type": { - "$id": "6642", + "$id": "6644", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85329,21 +85355,21 @@ "isHttpMetadata": false }, { - "$id": "6643", + "$id": "6645", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the vector store will expire.", "type": { - "$id": "6644", + "$id": "6646", "kind": "nullable", "type": { - "$id": "6645", + "$id": "6647", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6646", + "$id": "6648", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85368,21 +85394,21 @@ "isHttpMetadata": false }, { - "$id": "6647", + "$id": "6649", "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": "6648", + "$id": "6650", "kind": "nullable", "type": { - "$id": "6649", + "$id": "6651", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6650", + "$id": "6652", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85407,7 +85433,7 @@ "isHttpMetadata": false }, { - "$id": "6651", + "$id": "6653", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -85447,12 +85473,12 @@ "isHttpMetadata": false }, { - "$id": "6652", + "$id": "6654", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6653", + "$id": "6655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85472,12 +85498,12 @@ "isHttpMetadata": false }, { - "$id": "6654", + "$id": "6656", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6655", + "$id": "6657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85497,12 +85523,12 @@ "isHttpMetadata": false }, { - "$id": "6656", + "$id": "6658", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6657", + "$id": "6659", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -85524,16 +85550,16 @@ ] }, { - "$ref": "6610" + "$ref": "6612" }, { - "$ref": "6622" + "$ref": "6624" }, { - "$ref": "6635" + "$ref": "6637" }, { - "$id": "6658", + "$id": "6660", "kind": "model", "name": "CreateVectorStoreRequest", "namespace": "OpenAI", @@ -85542,7 +85568,7 @@ "decorators": [], "properties": [ { - "$id": "6659", + "$id": "6661", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -85564,13 +85590,13 @@ "isHttpMetadata": false }, { - "$id": "6660", + "$id": "6662", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6661", + "$id": "6663", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85590,12 +85616,12 @@ "isHttpMetadata": false }, { - "$id": "6662", + "$id": "6664", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$ref": "6635" + "$ref": "6637" }, "optional": true, "readOnly": false, @@ -85611,13 +85637,13 @@ "isHttpMetadata": false }, { - "$id": "6663", + "$id": "6665", "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": "6664", + "$id": "6666", "kind": "union", "name": "CreateVectorStoreRequestChunkingStrategy", "variantTypes": [ @@ -85645,7 +85671,7 @@ "isHttpMetadata": false }, { - "$id": "6665", + "$id": "6667", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -85669,7 +85695,7 @@ ] }, { - "$id": "6666", + "$id": "6668", "kind": "model", "name": "UpdateVectorStoreRequest", "namespace": "OpenAI", @@ -85678,16 +85704,16 @@ "decorators": [], "properties": [ { - "$id": "6667", + "$id": "6669", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6668", + "$id": "6670", "kind": "nullable", "type": { - "$id": "6669", + "$id": "6671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85709,15 +85735,15 @@ "isHttpMetadata": false }, { - "$id": "6670", + "$id": "6672", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6671", + "$id": "6673", "kind": "nullable", "type": { - "$ref": "6635" + "$ref": "6637" }, "namespace": "OpenAI" }, @@ -85735,7 +85761,7 @@ "isHttpMetadata": false }, { - "$id": "6672", + "$id": "6674", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -85759,7 +85785,7 @@ ] }, { - "$id": "6673", + "$id": "6675", "kind": "model", "name": "DeleteVectorStoreResponse", "namespace": "OpenAI", @@ -85768,12 +85794,12 @@ "decorators": [], "properties": [ { - "$id": "6674", + "$id": "6676", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6675", + "$id": "6677", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85793,12 +85819,12 @@ "isHttpMetadata": false }, { - "$id": "6676", + "$id": "6678", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6677", + "$id": "6679", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -85818,7 +85844,7 @@ "isHttpMetadata": false }, { - "$id": "6678", + "$id": "6680", "kind": "property", "name": "object", "serializedName": "object", @@ -85841,7 +85867,7 @@ ] }, { - "$id": "6679", + "$id": "6681", "kind": "model", "name": "CreateVectorStoreFileBatchRequest", "namespace": "OpenAI", @@ -85850,7 +85876,7 @@ "decorators": [], "properties": [ { - "$id": "6680", + "$id": "6682", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -85872,7 +85898,7 @@ "isHttpMetadata": false }, { - "$id": "6681", + "$id": "6683", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", @@ -85893,12 +85919,12 @@ "isHttpMetadata": false }, { - "$id": "6682", + "$id": "6684", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6683", + "$id": "6685", "kind": "nullable", "type": { "$ref": "3945" @@ -85921,7 +85947,7 @@ ] }, { - "$id": "6684", + "$id": "6686", "kind": "model", "name": "VectorStoreFileBatchObject", "namespace": "OpenAI", @@ -85931,13 +85957,13 @@ "decorators": [], "properties": [ { - "$id": "6685", + "$id": "6687", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6686", + "$id": "6688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85957,7 +85983,7 @@ "isHttpMetadata": false }, { - "$id": "6687", + "$id": "6689", "kind": "property", "name": "object", "serializedName": "object", @@ -85979,18 +86005,18 @@ "isHttpMetadata": false }, { - "$id": "6688", + "$id": "6690", "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": "6689", + "$id": "6691", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6690", + "$id": "6692", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86013,13 +86039,13 @@ "isHttpMetadata": false }, { - "$id": "6691", + "$id": "6693", "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": "6692", + "$id": "6694", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86039,7 +86065,7 @@ "isHttpMetadata": false }, { - "$id": "6693", + "$id": "6695", "kind": "property", "name": "status", "serializedName": "status", @@ -86061,12 +86087,12 @@ "isHttpMetadata": false }, { - "$id": "6694", + "$id": "6696", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6695", + "$id": "6697", "kind": "model", "name": "VectorStoreFileBatchObjectFileCounts", "namespace": "OpenAI", @@ -86075,13 +86101,13 @@ "decorators": [], "properties": [ { - "$id": "6696", + "$id": "6698", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6697", + "$id": "6699", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86101,13 +86127,13 @@ "isHttpMetadata": false }, { - "$id": "6698", + "$id": "6700", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been processed.", "type": { - "$id": "6699", + "$id": "6701", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86127,13 +86153,13 @@ "isHttpMetadata": false }, { - "$id": "6700", + "$id": "6702", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6701", + "$id": "6703", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86153,13 +86179,13 @@ "isHttpMetadata": false }, { - "$id": "6702", + "$id": "6704", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that where cancelled.", "type": { - "$id": "6703", + "$id": "6705", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86179,13 +86205,13 @@ "isHttpMetadata": false }, { - "$id": "6704", + "$id": "6706", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6705", + "$id": "6707", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86222,10 +86248,10 @@ ] }, { - "$ref": "6695" + "$ref": "6697" }, { - "$id": "6706", + "$id": "6708", "kind": "model", "name": "ListVectorStoreFilesResponse", "namespace": "OpenAI", @@ -86234,7 +86260,7 @@ "decorators": [], "properties": [ { - "$id": "6707", + "$id": "6709", "kind": "property", "name": "object", "serializedName": "object", @@ -86255,16 +86281,16 @@ "isHttpMetadata": false }, { - "$id": "6708", + "$id": "6710", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6709", + "$id": "6711", "kind": "array", "name": "ArrayVectorStoreFileObject", "valueType": { - "$id": "6710", + "$id": "6712", "kind": "model", "name": "VectorStoreFileObject", "namespace": "OpenAI", @@ -86274,13 +86300,13 @@ "decorators": [], "properties": [ { - "$id": "6711", + "$id": "6713", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6712", + "$id": "6714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86300,7 +86326,7 @@ "isHttpMetadata": false }, { - "$id": "6713", + "$id": "6715", "kind": "property", "name": "object", "serializedName": "object", @@ -86322,13 +86348,13 @@ "isHttpMetadata": false }, { - "$id": "6714", + "$id": "6716", "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": "6715", + "$id": "6717", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86348,18 +86374,18 @@ "isHttpMetadata": false }, { - "$id": "6716", + "$id": "6718", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store file was created.", "type": { - "$id": "6717", + "$id": "6719", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6718", + "$id": "6720", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86382,13 +86408,13 @@ "isHttpMetadata": false }, { - "$id": "6719", + "$id": "6721", "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": "6720", + "$id": "6722", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86408,7 +86434,7 @@ "isHttpMetadata": false }, { - "$id": "6721", + "$id": "6723", "kind": "property", "name": "status", "serializedName": "status", @@ -86430,16 +86456,16 @@ "isHttpMetadata": false }, { - "$id": "6722", + "$id": "6724", "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": "6723", + "$id": "6725", "kind": "nullable", "type": { - "$id": "6724", + "$id": "6726", "kind": "model", "name": "VectorStoreFileObjectLastError1", "namespace": "OpenAI", @@ -86448,7 +86474,7 @@ "decorators": [], "properties": [ { - "$id": "6725", + "$id": "6727", "kind": "property", "name": "code", "serializedName": "code", @@ -86470,13 +86496,13 @@ "isHttpMetadata": false }, { - "$id": "6726", + "$id": "6728", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6727", + "$id": "6729", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86513,13 +86539,13 @@ "isHttpMetadata": false }, { - "$id": "6728", + "$id": "6730", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "The strategy used to chunk the file.", "type": { - "$id": "6729", + "$id": "6731", "kind": "model", "name": "ChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -86527,7 +86553,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6730", + "$id": "6732", "kind": "property", "name": "type", "serializedName": "type", @@ -86549,12 +86575,12 @@ }, "properties": [ { - "$ref": "6730" + "$ref": "6732" } ], "discriminatedSubtypes": { "other": { - "$id": "6731", + "$id": "6733", "kind": "model", "name": "OtherChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -86564,17 +86590,17 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "6729" + "$ref": "6731" }, "properties": [ { - "$id": "6732", + "$id": "6734", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `other`.", "type": { - "$id": "6733", + "$id": "6735", "kind": "enumvalue", "name": "other", "value": "other", @@ -86582,14 +86608,14 @@ "$ref": "1080" }, "enumType": { - "$id": "6734", + "$id": "6736", "kind": "enum", "decorators": [], "name": "ChunkingStrategyResponseParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "6735", + "$id": "6737", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -86598,29 +86624,29 @@ }, "values": [ { - "$id": "6736", + "$id": "6738", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "6735" + "$ref": "6737" }, "enumType": { - "$ref": "6734" + "$ref": "6736" } }, { - "$id": "6737", + "$id": "6739", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "6735" + "$ref": "6737" }, "enumType": { - "$ref": "6734" + "$ref": "6736" } } ], @@ -86651,7 +86677,7 @@ ] }, "static": { - "$id": "6738", + "$id": "6740", "kind": "model", "name": "StaticChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -86660,17 +86686,17 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "6729" + "$ref": "6731" }, "properties": [ { - "$id": "6739", + "$id": "6741", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `static`.", "type": { - "$id": "6740", + "$id": "6742", "kind": "enumvalue", "name": "static", "value": "static", @@ -86678,7 +86704,7 @@ "$ref": "1080" }, "enumType": { - "$ref": "6734" + "$ref": "6736" }, "decorators": [] }, @@ -86696,7 +86722,7 @@ "isHttpMetadata": false }, { - "$id": "6741", + "$id": "6743", "kind": "property", "name": "static", "serializedName": "static", @@ -86734,12 +86760,12 @@ "isHttpMetadata": false }, { - "$id": "6742", + "$id": "6744", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6743", + "$id": "6745", "kind": "nullable", "type": { "$ref": "3945" @@ -86778,12 +86804,12 @@ "isHttpMetadata": false }, { - "$id": "6744", + "$id": "6746", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6745", + "$id": "6747", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86803,12 +86829,12 @@ "isHttpMetadata": false }, { - "$id": "6746", + "$id": "6748", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6747", + "$id": "6749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86828,12 +86854,12 @@ "isHttpMetadata": false }, { - "$id": "6748", + "$id": "6750", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6749", + "$id": "6751", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86855,22 +86881,22 @@ ] }, { - "$ref": "6710" + "$ref": "6712" }, { - "$ref": "6724" + "$ref": "6726" }, { - "$ref": "6729" + "$ref": "6731" }, { - "$ref": "6731" + "$ref": "6733" }, { - "$ref": "6738" + "$ref": "6740" }, { - "$id": "6750", + "$id": "6752", "kind": "model", "name": "CreateVectorStoreFileRequest", "namespace": "OpenAI", @@ -86879,13 +86905,13 @@ "decorators": [], "properties": [ { - "$id": "6751", + "$id": "6753", "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": "6752", + "$id": "6754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86905,7 +86931,7 @@ "isHttpMetadata": false }, { - "$id": "6753", + "$id": "6755", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", @@ -86926,12 +86952,12 @@ "isHttpMetadata": false }, { - "$id": "6754", + "$id": "6756", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6755", + "$id": "6757", "kind": "nullable", "type": { "$ref": "3945" @@ -86954,7 +86980,7 @@ ] }, { - "$id": "6756", + "$id": "6758", "kind": "model", "name": "DeleteVectorStoreFileResponse", "namespace": "OpenAI", @@ -86963,12 +86989,12 @@ "decorators": [], "properties": [ { - "$id": "6757", + "$id": "6759", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6758", + "$id": "6760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86988,12 +87014,12 @@ "isHttpMetadata": false }, { - "$id": "6759", + "$id": "6761", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6760", + "$id": "6762", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87013,7 +87039,7 @@ "isHttpMetadata": false }, { - "$id": "6761", + "$id": "6763", "kind": "property", "name": "object", "serializedName": "object", @@ -87036,7 +87062,7 @@ ] }, { - "$id": "6762", + "$id": "6764", "kind": "model", "name": "UpdateVectorStoreFileAttributesRequest", "namespace": "OpenAI", @@ -87045,12 +87071,12 @@ "decorators": [], "properties": [ { - "$id": "6763", + "$id": "6765", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6764", + "$id": "6766", "kind": "nullable", "type": { "$ref": "3945" @@ -87073,7 +87099,7 @@ ] }, { - "$id": "6765", + "$id": "6767", "kind": "model", "name": "VectorStoreFileContentResponse", "namespace": "OpenAI", @@ -87083,7 +87109,7 @@ "decorators": [], "properties": [ { - "$id": "6766", + "$id": "6768", "kind": "property", "name": "object", "serializedName": "object", @@ -87105,17 +87131,17 @@ "isHttpMetadata": false }, { - "$id": "6767", + "$id": "6769", "kind": "property", "name": "data", "serializedName": "data", "doc": "Parsed content of the file.", "type": { - "$id": "6768", + "$id": "6770", "kind": "array", "name": "Array40", "valueType": { - "$id": "6769", + "$id": "6771", "kind": "model", "name": "VectorStoreFileContentResponseDatum", "namespace": "OpenAI", @@ -87124,13 +87150,13 @@ "decorators": [], "properties": [ { - "$id": "6770", + "$id": "6772", "kind": "property", "name": "type", "serializedName": "type", "doc": "The content type (currently only `\"text\"`)", "type": { - "$id": "6771", + "$id": "6773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87150,13 +87176,13 @@ "isHttpMetadata": false }, { - "$id": "6772", + "$id": "6774", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content", "type": { - "$id": "6773", + "$id": "6775", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87194,13 +87220,13 @@ "isHttpMetadata": false }, { - "$id": "6774", + "$id": "6776", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more content pages to fetch.", "type": { - "$id": "6775", + "$id": "6777", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87220,16 +87246,16 @@ "isHttpMetadata": false }, { - "$id": "6776", + "$id": "6778", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6777", + "$id": "6779", "kind": "nullable", "type": { - "$id": "6778", + "$id": "6780", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87253,10 +87279,10 @@ ] }, { - "$ref": "6769" + "$ref": "6771" }, { - "$id": "6779", + "$id": "6781", "kind": "model", "name": "VectorStoreSearchRequestRankingOptions", "namespace": "OpenAI", @@ -87265,7 +87291,7 @@ "decorators": [], "properties": [ { - "$id": "6780", + "$id": "6782", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -87286,12 +87312,12 @@ "isHttpMetadata": false }, { - "$id": "6781", + "$id": "6783", "kind": "property", "name": "score_threshold", "serializedName": "score_threshold", "type": { - "$id": "6782", + "$id": "6784", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87313,7 +87339,7 @@ ] }, { - "$id": "6783", + "$id": "6785", "kind": "model", "name": "VectorStoreSearchRequest", "namespace": "OpenAI", @@ -87322,18 +87348,18 @@ "decorators": [], "properties": [ { - "$id": "6784", + "$id": "6786", "kind": "property", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$id": "6785", + "$id": "6787", "kind": "union", "name": "VectorStoreSearchRequestQuery", "variantTypes": [ { - "$id": "6786", + "$id": "6788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87360,13 +87386,13 @@ "isHttpMetadata": false }, { - "$id": "6787", + "$id": "6789", "kind": "property", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "6788", + "$id": "6790", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87386,13 +87412,13 @@ "isHttpMetadata": false }, { - "$id": "6789", + "$id": "6791", "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": "6790", + "$id": "6792", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87412,13 +87438,13 @@ "isHttpMetadata": false }, { - "$id": "6791", + "$id": "6793", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$id": "6792", + "$id": "6794", "kind": "union", "name": "VectorStoreSearchRequestFilters", "variantTypes": [ @@ -87446,13 +87472,13 @@ "isHttpMetadata": false }, { - "$id": "6793", + "$id": "6795", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6779" + "$ref": "6781" }, "optional": true, "readOnly": false, @@ -87470,7 +87496,7 @@ ] }, { - "$id": "6794", + "$id": "6796", "kind": "model", "name": "VectorStoreSearchResultsPage", "namespace": "OpenAI", @@ -87479,7 +87505,7 @@ "decorators": [], "properties": [ { - "$id": "6795", + "$id": "6797", "kind": "property", "name": "object", "serializedName": "object", @@ -87501,7 +87527,7 @@ "isHttpMetadata": false }, { - "$id": "6796", + "$id": "6798", "kind": "property", "name": "search_query", "serializedName": "search_query", @@ -87522,17 +87548,17 @@ "isHttpMetadata": false }, { - "$id": "6797", + "$id": "6799", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of search result items.", "type": { - "$id": "6798", + "$id": "6800", "kind": "array", "name": "ArrayVectorStoreSearchResultItem", "valueType": { - "$id": "6799", + "$id": "6801", "kind": "model", "name": "VectorStoreSearchResultItem", "namespace": "OpenAI", @@ -87541,13 +87567,13 @@ "decorators": [], "properties": [ { - "$id": "6800", + "$id": "6802", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the vector store file.", "type": { - "$id": "6801", + "$id": "6803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87567,13 +87593,13 @@ "isHttpMetadata": false }, { - "$id": "6802", + "$id": "6804", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the vector store file.", "type": { - "$id": "6803", + "$id": "6805", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87593,13 +87619,13 @@ "isHttpMetadata": false }, { - "$id": "6804", + "$id": "6806", "kind": "property", "name": "score", "serializedName": "score", "doc": "The similarity score for the result.", "type": { - "$id": "6805", + "$id": "6807", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87619,12 +87645,12 @@ "isHttpMetadata": false }, { - "$id": "6806", + "$id": "6808", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6807", + "$id": "6809", "kind": "nullable", "type": { "$ref": "3945" @@ -87645,17 +87671,17 @@ "isHttpMetadata": false }, { - "$id": "6808", + "$id": "6810", "kind": "property", "name": "content", "serializedName": "content", "doc": "Content chunks from the file.", "type": { - "$id": "6809", + "$id": "6811", "kind": "array", "name": "ArrayVectorStoreSearchResultContentObject", "valueType": { - "$id": "6810", + "$id": "6812", "kind": "model", "name": "VectorStoreSearchResultContentObject", "namespace": "OpenAI", @@ -87664,7 +87690,7 @@ "decorators": [], "properties": [ { - "$id": "6811", + "$id": "6813", "kind": "property", "name": "type", "serializedName": "type", @@ -87686,13 +87712,13 @@ "isHttpMetadata": false }, { - "$id": "6812", + "$id": "6814", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content returned from search.", "type": { - "$id": "6813", + "$id": "6815", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87748,13 +87774,13 @@ "isHttpMetadata": false }, { - "$id": "6814", + "$id": "6816", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more results to fetch.", "type": { - "$id": "6815", + "$id": "6817", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87774,16 +87800,16 @@ "isHttpMetadata": false }, { - "$id": "6816", + "$id": "6818", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6817", + "$id": "6819", "kind": "nullable", "type": { - "$id": "6818", + "$id": "6820", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87807,13 +87833,13 @@ ] }, { - "$ref": "6799" + "$ref": "6801" }, { - "$ref": "6810" + "$ref": "6812" }, { - "$id": "6819", + "$id": "6821", "kind": "model", "name": "CreateCompletionRequest", "namespace": "OpenAI", @@ -87822,7 +87848,7 @@ "decorators": [], "properties": [ { - "$id": "6820", + "$id": "6822", "kind": "property", "name": "model", "serializedName": "model", @@ -87844,21 +87870,21 @@ "isHttpMetadata": false }, { - "$id": "6821", + "$id": "6823", "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": "6822", + "$id": "6824", "kind": "nullable", "type": { - "$id": "6823", + "$id": "6825", "kind": "union", "name": "CreateCompletionRequestPrompt", "variantTypes": [ { - "$id": "6824", + "$id": "6826", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87893,16 +87919,16 @@ "isHttpMetadata": false }, { - "$id": "6825", + "$id": "6827", "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": "6826", + "$id": "6828", "kind": "nullable", "type": { - "$id": "6827", + "$id": "6829", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87924,16 +87950,16 @@ "isHttpMetadata": false }, { - "$id": "6828", + "$id": "6830", "kind": "property", "name": "echo", "serializedName": "echo", "doc": "Echo back the prompt in addition to the completion", "type": { - "$id": "6829", + "$id": "6831", "kind": "nullable", "type": { - "$id": "6830", + "$id": "6832", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87955,16 +87981,16 @@ "isHttpMetadata": false }, { - "$id": "6831", + "$id": "6833", "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": "6832", + "$id": "6834", "kind": "nullable", "type": { - "$id": "6833", + "$id": "6835", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87986,13 +88012,13 @@ "isHttpMetadata": false }, { - "$id": "6834", + "$id": "6836", "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": "6835", + "$id": "6837", "kind": "nullable", "type": { "$ref": "3166" @@ -88013,16 +88039,16 @@ "isHttpMetadata": false }, { - "$id": "6836", + "$id": "6838", "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": "6837", + "$id": "6839", "kind": "nullable", "type": { - "$id": "6838", + "$id": "6840", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88044,16 +88070,16 @@ "isHttpMetadata": false }, { - "$id": "6839", + "$id": "6841", "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": "6840", + "$id": "6842", "kind": "nullable", "type": { - "$id": "6841", + "$id": "6843", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88075,16 +88101,16 @@ "isHttpMetadata": false }, { - "$id": "6842", + "$id": "6844", "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": "6843", + "$id": "6845", "kind": "nullable", "type": { - "$id": "6844", + "$id": "6846", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88106,16 +88132,16 @@ "isHttpMetadata": false }, { - "$id": "6845", + "$id": "6847", "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": "6846", + "$id": "6848", "kind": "nullable", "type": { - "$id": "6847", + "$id": "6849", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88137,16 +88163,16 @@ "isHttpMetadata": false }, { - "$id": "6848", + "$id": "6850", "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": "6849", + "$id": "6851", "kind": "nullable", "type": { - "$id": "6850", + "$id": "6852", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -88168,12 +88194,12 @@ "isHttpMetadata": false }, { - "$id": "6851", + "$id": "6853", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "6852", + "$id": "6854", "kind": "nullable", "type": { "$ref": "3162" @@ -88194,16 +88220,16 @@ "isHttpMetadata": false }, { - "$id": "6853", + "$id": "6855", "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": "6854", + "$id": "6856", "kind": "nullable", "type": { - "$id": "6855", + "$id": "6857", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88225,12 +88251,12 @@ "isHttpMetadata": false }, { - "$id": "6856", + "$id": "6858", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "6857", + "$id": "6859", "kind": "nullable", "type": { "$ref": "3196" @@ -88251,16 +88277,16 @@ "isHttpMetadata": false }, { - "$id": "6858", + "$id": "6860", "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": "6859", + "$id": "6861", "kind": "nullable", "type": { - "$id": "6860", + "$id": "6862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88282,16 +88308,16 @@ "isHttpMetadata": false }, { - "$id": "6861", + "$id": "6863", "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": "6862", + "$id": "6864", "kind": "nullable", "type": { - "$id": "6863", + "$id": "6865", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88313,16 +88339,16 @@ "isHttpMetadata": false }, { - "$id": "6864", + "$id": "6866", "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": "6865", + "$id": "6867", "kind": "nullable", "type": { - "$id": "6866", + "$id": "6868", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88344,13 +88370,13 @@ "isHttpMetadata": false }, { - "$id": "6867", + "$id": "6869", "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": "6868", + "$id": "6870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88372,7 +88398,7 @@ ] }, { - "$id": "6869", + "$id": "6871", "kind": "model", "name": "CreateCompletionResponse", "namespace": "OpenAI", @@ -88382,13 +88408,13 @@ "decorators": [], "properties": [ { - "$id": "6870", + "$id": "6872", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the completion.", "type": { - "$id": "6871", + "$id": "6873", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88408,17 +88434,17 @@ "isHttpMetadata": false }, { - "$id": "6872", + "$id": "6874", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "The list of completion choices the model generated for the input prompt.", "type": { - "$id": "6873", + "$id": "6875", "kind": "array", "name": "Array41", "valueType": { - "$id": "6874", + "$id": "6876", "kind": "model", "name": "CreateCompletionResponseChoice", "namespace": "OpenAI", @@ -88427,7 +88453,7 @@ "decorators": [], "properties": [ { - "$id": "6875", + "$id": "6877", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", @@ -88449,12 +88475,12 @@ "isHttpMetadata": false }, { - "$id": "6876", + "$id": "6878", "kind": "property", "name": "index", "serializedName": "index", "type": { - "$id": "6877", + "$id": "6879", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88474,15 +88500,15 @@ "isHttpMetadata": false }, { - "$id": "6878", + "$id": "6880", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "6879", + "$id": "6881", "kind": "nullable", "type": { - "$id": "6880", + "$id": "6882", "kind": "model", "name": "CreateCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -88491,7 +88517,7 @@ "decorators": [], "properties": [ { - "$id": "6881", + "$id": "6883", "kind": "property", "name": "text_offset", "serializedName": "text_offset", @@ -88512,7 +88538,7 @@ "isHttpMetadata": false }, { - "$id": "6882", + "$id": "6884", "kind": "property", "name": "token_logprobs", "serializedName": "token_logprobs", @@ -88533,7 +88559,7 @@ "isHttpMetadata": false }, { - "$id": "6883", + "$id": "6885", "kind": "property", "name": "tokens", "serializedName": "tokens", @@ -88554,26 +88580,26 @@ "isHttpMetadata": false }, { - "$id": "6884", + "$id": "6886", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "6885", + "$id": "6887", "kind": "array", "name": "ArrayRecord1", "valueType": { - "$id": "6886", + "$id": "6888", "kind": "dict", "keyType": { - "$id": "6887", + "$id": "6889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "6888", + "$id": "6890", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88615,12 +88641,12 @@ "isHttpMetadata": false }, { - "$id": "6889", + "$id": "6891", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6890", + "$id": "6892", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88658,18 +88684,18 @@ "isHttpMetadata": false }, { - "$id": "6891", + "$id": "6893", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the completion was created.", "type": { - "$id": "6892", + "$id": "6894", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6893", + "$id": "6895", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88692,13 +88718,13 @@ "isHttpMetadata": false }, { - "$id": "6894", + "$id": "6896", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for completion.", "type": { - "$id": "6895", + "$id": "6897", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88718,13 +88744,13 @@ "isHttpMetadata": false }, { - "$id": "6896", + "$id": "6898", "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": "6897", + "$id": "6899", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88744,7 +88770,7 @@ "isHttpMetadata": false }, { - "$id": "6898", + "$id": "6900", "kind": "property", "name": "object", "serializedName": "object", @@ -88766,7 +88792,7 @@ "isHttpMetadata": false }, { - "$id": "6899", + "$id": "6901", "kind": "property", "name": "usage", "serializedName": "usage", @@ -88789,13 +88815,13 @@ ] }, { - "$ref": "6874" + "$ref": "6876" }, { - "$ref": "6880" + "$ref": "6882" }, { - "$id": "6900", + "$id": "6902", "kind": "model", "name": "ListModelsResponse", "namespace": "OpenAI", @@ -88804,7 +88830,7 @@ "decorators": [], "properties": [ { - "$id": "6901", + "$id": "6903", "kind": "property", "name": "object", "serializedName": "object", @@ -88825,16 +88851,16 @@ "isHttpMetadata": false }, { - "$id": "6902", + "$id": "6904", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6903", + "$id": "6905", "kind": "array", "name": "ArrayModel", "valueType": { - "$id": "6904", + "$id": "6906", "kind": "model", "name": "Model", "namespace": "OpenAI", @@ -88844,13 +88870,13 @@ "decorators": [], "properties": [ { - "$id": "6905", + "$id": "6907", "kind": "property", "name": "id", "serializedName": "id", "doc": "The model identifier, which can be referenced in the API endpoints.", "type": { - "$id": "6906", + "$id": "6908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88870,18 +88896,18 @@ "isHttpMetadata": false }, { - "$id": "6907", + "$id": "6909", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) when the model was created.", "type": { - "$id": "6908", + "$id": "6910", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6909", + "$id": "6911", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -88904,7 +88930,7 @@ "isHttpMetadata": false }, { - "$id": "6910", + "$id": "6912", "kind": "property", "name": "object", "serializedName": "object", @@ -88926,13 +88952,13 @@ "isHttpMetadata": false }, { - "$id": "6911", + "$id": "6913", "kind": "property", "name": "owned_by", "serializedName": "owned_by", "doc": "The organization that owns the model.", "type": { - "$id": "6912", + "$id": "6914", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88972,10 +88998,10 @@ ] }, { - "$ref": "6904" + "$ref": "6906" }, { - "$id": "6913", + "$id": "6915", "kind": "model", "name": "DeleteModelResponse", "namespace": "OpenAI", @@ -88984,12 +89010,12 @@ "decorators": [], "properties": [ { - "$id": "6914", + "$id": "6916", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6915", + "$id": "6917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89009,12 +89035,12 @@ "isHttpMetadata": false }, { - "$id": "6916", + "$id": "6918", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6917", + "$id": "6919", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89034,7 +89060,7 @@ "isHttpMetadata": false }, { - "$id": "6918", + "$id": "6920", "kind": "property", "name": "object", "serializedName": "object", @@ -89057,7 +89083,7 @@ ] }, { - "$id": "6919", + "$id": "6921", "kind": "model", "name": "RealtimeClientEvent", "namespace": "OpenAI", @@ -89066,7 +89092,7 @@ "doc": "A realtime client event.", "decorators": [], "discriminatorProperty": { - "$id": "6920", + "$id": "6922", "kind": "property", "name": "type", "serializedName": "type", @@ -89089,15 +89115,15 @@ }, "properties": [ { - "$ref": "6920" + "$ref": "6922" }, { - "$id": "6921", + "$id": "6923", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "6922", + "$id": "6924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89119,7 +89145,7 @@ ], "discriminatedSubtypes": { "session.update": { - "$id": "6923", + "$id": "6925", "kind": "model", "name": "RealtimeClientEventSessionUpdate", "namespace": "OpenAI", @@ -89129,17 +89155,17 @@ "discriminatorValue": "session.update", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "6924", + "$id": "6926", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.update`.", "type": { - "$id": "6925", + "$id": "6927", "kind": "enumvalue", "name": "session_update", "value": "session.update", @@ -89147,14 +89173,14 @@ "$ref": "1098" }, "enumType": { - "$id": "6926", + "$id": "6928", "kind": "enum", "decorators": [], "name": "RealtimeClientEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6927", + "$id": "6929", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -89163,159 +89189,159 @@ }, "values": [ { - "$id": "6928", + "$id": "6930", "kind": "enumvalue", "decorators": [], "name": "session_update", "value": "session.update", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6929", + "$id": "6931", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6930", + "$id": "6932", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6931", + "$id": "6933", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6932", + "$id": "6934", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6933", + "$id": "6935", "kind": "enumvalue", "decorators": [], "name": "conversation_item_create", "value": "conversation.item.create", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6934", + "$id": "6936", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6935", + "$id": "6937", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncate", "value": "conversation.item.truncate", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6936", + "$id": "6938", "kind": "enumvalue", "decorators": [], "name": "conversation_item_delete", "value": "conversation.item.delete", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6937", + "$id": "6939", "kind": "enumvalue", "decorators": [], "name": "response_create", "value": "response.create", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6938", + "$id": "6940", "kind": "enumvalue", "decorators": [], "name": "response_cancel", "value": "response.cancel", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } }, { - "$id": "6939", + "$id": "6941", "kind": "enumvalue", "decorators": [], "name": "transcription_session_update", "value": "transcription_session.update", "valueType": { - "$ref": "6927" + "$ref": "6929" }, "enumType": { - "$ref": "6926" + "$ref": "6928" } } ], @@ -89344,12 +89370,12 @@ "isHttpMetadata": false }, { - "$id": "6940", + "$id": "6942", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6941", + "$id": "6943", "kind": "model", "name": "RealtimeRequestSession", "namespace": "OpenAI", @@ -89358,12 +89384,12 @@ "decorators": [], "properties": [ { - "$id": "6942", + "$id": "6944", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "6943", + "$id": "6945", "kind": "array", "name": "ArrayRealtimeModality", "valueType": { @@ -89386,12 +89412,12 @@ "isHttpMetadata": false }, { - "$id": "6944", + "$id": "6946", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "6945", + "$id": "6947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89411,7 +89437,7 @@ "isHttpMetadata": false }, { - "$id": "6946", + "$id": "6948", "kind": "property", "name": "model", "serializedName": "model", @@ -89432,7 +89458,7 @@ "isHttpMetadata": false }, { - "$id": "6947", + "$id": "6949", "kind": "property", "name": "voice", "serializedName": "voice", @@ -89453,7 +89479,7 @@ "isHttpMetadata": false }, { - "$id": "6948", + "$id": "6950", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -89474,7 +89500,7 @@ "isHttpMetadata": false }, { - "$id": "6949", + "$id": "6951", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -89495,15 +89521,15 @@ "isHttpMetadata": false }, { - "$id": "6950", + "$id": "6952", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "6951", + "$id": "6953", "kind": "nullable", "type": { - "$id": "6952", + "$id": "6954", "kind": "model", "name": "RealtimeAudioInputTranscriptionSettings", "namespace": "OpenAI", @@ -89512,7 +89538,7 @@ "decorators": [], "properties": [ { - "$id": "6953", + "$id": "6955", "kind": "property", "name": "model", "serializedName": "model", @@ -89533,12 +89559,12 @@ "isHttpMetadata": false }, { - "$id": "6954", + "$id": "6956", "kind": "property", "name": "language", "serializedName": "language", "type": { - "$id": "6955", + "$id": "6957", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89558,12 +89584,12 @@ "isHttpMetadata": false }, { - "$id": "6956", + "$id": "6958", "kind": "property", "name": "prompt", "serializedName": "prompt", "type": { - "$id": "6957", + "$id": "6959", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89600,15 +89626,15 @@ "isHttpMetadata": false }, { - "$id": "6958", + "$id": "6960", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$id": "6959", + "$id": "6961", "kind": "nullable", "type": { - "$id": "6960", + "$id": "6962", "kind": "model", "name": "RealtimeTurnDetection", "namespace": "OpenAI", @@ -89616,7 +89642,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6961", + "$id": "6963", "kind": "property", "name": "type", "serializedName": "type", @@ -89638,16 +89664,16 @@ }, "properties": [ { - "$ref": "6961" + "$ref": "6963" }, { - "$id": "6962", + "$id": "6964", "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": "6963", + "$id": "6965", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89667,13 +89693,13 @@ "isHttpMetadata": false }, { - "$id": "6964", + "$id": "6966", "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": "6965", + "$id": "6967", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -89695,7 +89721,7 @@ ], "discriminatedSubtypes": { "server_vad": { - "$id": "6966", + "$id": "6968", "kind": "model", "name": "RealtimeServerVadTurnDetection", "namespace": "OpenAI", @@ -89704,16 +89730,16 @@ "discriminatorValue": "server_vad", "decorators": [], "baseModel": { - "$ref": "6960" + "$ref": "6962" }, "properties": [ { - "$id": "6967", + "$id": "6969", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6968", + "$id": "6970", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", @@ -89721,14 +89747,14 @@ "$ref": "1131" }, "enumType": { - "$id": "6969", + "$id": "6971", "kind": "enum", "decorators": [], "name": "RealtimeTurnDetectionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6970", + "$id": "6972", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -89737,30 +89763,30 @@ }, "values": [ { - "$id": "6971", + "$id": "6973", "kind": "enumvalue", "decorators": [], "doc": "Indicates that server-side voice activity detection (VAD) should be enabled, allowing the server to determine when\nadd_user_audio commands present ends of speech and should be automatically committed.\n\nThe API will also detect when the user begins talking, sending a generation_canceled command.", "name": "server_vad", "value": "server_vad", "valueType": { - "$ref": "6970" + "$ref": "6972" }, "enumType": { - "$ref": "6969" + "$ref": "6971" } }, { - "$id": "6972", + "$id": "6974", "kind": "enumvalue", "decorators": [], "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "6970" + "$ref": "6972" }, "enumType": { - "$ref": "6969" + "$ref": "6971" } } ], @@ -89790,13 +89816,13 @@ "isHttpMetadata": false }, { - "$id": "6973", + "$id": "6975", "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": "6974", + "$id": "6976", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89816,18 +89842,18 @@ "isHttpMetadata": false }, { - "$id": "6975", + "$id": "6977", "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": "6976", + "$id": "6978", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6977", + "$id": "6979", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89850,18 +89876,18 @@ "isHttpMetadata": false }, { - "$id": "6978", + "$id": "6980", "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": "6979", + "$id": "6981", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6980", + "$id": "6982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89886,7 +89912,7 @@ ] }, "semantic_vad": { - "$id": "6981", + "$id": "6983", "kind": "model", "name": "RealtimeSemanticVadTurnDetection", "namespace": "OpenAI", @@ -89895,16 +89921,16 @@ "discriminatorValue": "semantic_vad", "decorators": [], "baseModel": { - "$ref": "6960" + "$ref": "6962" }, "properties": [ { - "$id": "6982", + "$id": "6984", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6983", + "$id": "6985", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", @@ -89912,7 +89938,7 @@ "$ref": "1131" }, "enumType": { - "$ref": "6969" + "$ref": "6971" }, "decorators": [] }, @@ -89930,7 +89956,7 @@ "isHttpMetadata": false }, { - "$id": "6984", + "$id": "6986", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -89971,12 +89997,12 @@ "isHttpMetadata": false }, { - "$id": "6985", + "$id": "6987", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$id": "6986", + "$id": "6988", "kind": "model", "name": "RealtimeAudioNoiseReduction", "namespace": "OpenAI", @@ -89984,7 +90010,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6987", + "$id": "6989", "kind": "property", "name": "type", "serializedName": "type", @@ -90006,12 +90032,12 @@ }, "properties": [ { - "$ref": "6987" + "$ref": "6989" } ], "discriminatedSubtypes": { "near_field": { - "$id": "6988", + "$id": "6990", "kind": "model", "name": "RealtimeAudioNearFieldNoiseReduction", "namespace": "OpenAI", @@ -90020,16 +90046,16 @@ "discriminatorValue": "near_field", "decorators": [], "baseModel": { - "$ref": "6986" + "$ref": "6988" }, "properties": [ { - "$id": "6989", + "$id": "6991", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6990", + "$id": "6992", "kind": "enumvalue", "name": "near_field", "value": "near_field", @@ -90037,14 +90063,14 @@ "$ref": "1141" }, "enumType": { - "$id": "6991", + "$id": "6993", "kind": "enum", "decorators": [], "name": "RealtimeAudioNoiseReductionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6992", + "$id": "6994", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -90053,29 +90079,29 @@ }, "values": [ { - "$id": "6993", + "$id": "6995", "kind": "enumvalue", "decorators": [], "name": "near_field", "value": "near_field", "valueType": { - "$ref": "6992" + "$ref": "6994" }, "enumType": { - "$ref": "6991" + "$ref": "6993" } }, { - "$id": "6994", + "$id": "6996", "kind": "enumvalue", "decorators": [], "name": "far_field", "value": "far_field", "valueType": { - "$ref": "6992" + "$ref": "6994" }, "enumType": { - "$ref": "6991" + "$ref": "6993" } } ], @@ -90106,7 +90132,7 @@ ] }, "far_field": { - "$id": "6995", + "$id": "6997", "kind": "model", "name": "RealtimeAudioFarFieldNoiseReduction", "namespace": "OpenAI", @@ -90115,16 +90141,16 @@ "discriminatorValue": "far_field", "decorators": [], "baseModel": { - "$ref": "6986" + "$ref": "6988" }, "properties": [ { - "$id": "6996", + "$id": "6998", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6997", + "$id": "6999", "kind": "enumvalue", "name": "far_field", "value": "far_field", @@ -90132,7 +90158,7 @@ "$ref": "1141" }, "enumType": { - "$ref": "6991" + "$ref": "6993" }, "decorators": [] }, @@ -90167,16 +90193,16 @@ "isHttpMetadata": false }, { - "$id": "6998", + "$id": "7000", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$id": "6999", + "$id": "7001", "kind": "array", "name": "ArrayRealtimeTool", "valueType": { - "$id": "7000", + "$id": "7002", "kind": "model", "name": "RealtimeTool", "namespace": "OpenAI", @@ -90185,7 +90211,7 @@ "doc": "The base representation of a realtime tool definition.", "decorators": [], "discriminatorProperty": { - "$id": "7001", + "$id": "7003", "kind": "property", "name": "type", "serializedName": "type", @@ -90207,12 +90233,12 @@ }, "properties": [ { - "$ref": "7001" + "$ref": "7003" } ], "discriminatedSubtypes": { "function": { - "$id": "7002", + "$id": "7004", "kind": "model", "name": "RealtimeFunctionTool", "namespace": "OpenAI", @@ -90222,16 +90248,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7000" + "$ref": "7002" }, "properties": [ { - "$id": "7003", + "$id": "7005", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7004", + "$id": "7006", "kind": "enumvalue", "name": "function", "value": "function", @@ -90239,7 +90265,7 @@ "$ref": "1145" }, "enumType": { - "$id": "7005", + "$id": "7007", "kind": "enum", "decorators": [], "doc": "The supported tool type discriminators for realtime tools.\nCurrently, only 'function' tools are supported.", @@ -90247,7 +90273,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7006", + "$id": "7008", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -90256,16 +90282,16 @@ }, "values": [ { - "$id": "7007", + "$id": "7009", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "7006" + "$ref": "7008" }, "enumType": { - "$ref": "7005" + "$ref": "7007" } } ], @@ -90294,12 +90320,12 @@ "isHttpMetadata": false }, { - "$id": "7008", + "$id": "7010", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7009", + "$id": "7011", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90319,12 +90345,12 @@ "isHttpMetadata": false }, { - "$id": "7010", + "$id": "7012", "kind": "property", "name": "description", "serializedName": "description", "type": { - "$id": "7011", + "$id": "7013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90344,12 +90370,12 @@ "isHttpMetadata": false }, { - "$id": "7012", + "$id": "7014", "kind": "property", "name": "parameters", "serializedName": "parameters", "type": { - "$id": "7013", + "$id": "7015", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -90389,12 +90415,12 @@ "isHttpMetadata": false }, { - "$id": "7014", + "$id": "7016", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "7015", + "$id": "7017", "kind": "union", "name": "RealtimeToolChoice", "variantTypes": [ @@ -90402,7 +90428,7 @@ "$ref": "1147" }, { - "$id": "7016", + "$id": "7018", "kind": "model", "name": "RealtimeToolChoiceObject", "namespace": "OpenAI", @@ -90411,7 +90437,7 @@ "doc": "A base representation for a realtime tool_choice selecting a named tool.", "decorators": [], "discriminatorProperty": { - "$id": "7017", + "$id": "7019", "kind": "property", "name": "type", "serializedName": "type", @@ -90433,12 +90459,12 @@ }, "properties": [ { - "$ref": "7017" + "$ref": "7019" } ], "discriminatedSubtypes": { "function": { - "$id": "7018", + "$id": "7020", "kind": "model", "name": "RealtimeToolChoiceFunctionObject", "namespace": "OpenAI", @@ -90448,16 +90474,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7016" + "$ref": "7018" }, "properties": [ { - "$id": "7019", + "$id": "7021", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7004" + "$ref": "7006" }, "optional": false, "readOnly": false, @@ -90473,12 +90499,12 @@ "isHttpMetadata": false }, { - "$id": "7020", + "$id": "7022", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "7021", + "$id": "7023", "kind": "model", "name": "RealtimeToolChoiceFunctionObjectFunction", "namespace": "OpenAI", @@ -90487,12 +90513,12 @@ "decorators": [], "properties": [ { - "$id": "7022", + "$id": "7024", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7023", + "$id": "7025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90548,12 +90574,12 @@ "isHttpMetadata": false }, { - "$id": "7024", + "$id": "7026", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7025", + "$id": "7027", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -90573,17 +90599,17 @@ "isHttpMetadata": false }, { - "$id": "7026", + "$id": "7028", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7027", + "$id": "7029", "kind": "union", "name": "RealtimeRequestSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7028", + "$id": "7030", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -90627,7 +90653,7 @@ ] }, "input_audio_buffer.append": { - "$id": "7029", + "$id": "7031", "kind": "model", "name": "RealtimeClientEventInputAudioBufferAppend", "namespace": "OpenAI", @@ -90637,17 +90663,17 @@ "discriminatorValue": "input_audio_buffer.append", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7030", + "$id": "7032", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.append`.", "type": { - "$id": "7031", + "$id": "7033", "kind": "enumvalue", "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", @@ -90655,7 +90681,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -90673,13 +90699,13 @@ "isHttpMetadata": false }, { - "$id": "7032", + "$id": "7034", "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": "7033", + "$id": "7035", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -90702,7 +90728,7 @@ ] }, "input_audio_buffer.commit": { - "$id": "7034", + "$id": "7036", "kind": "model", "name": "RealtimeClientEventInputAudioBufferCommit", "namespace": "OpenAI", @@ -90712,17 +90738,17 @@ "discriminatorValue": "input_audio_buffer.commit", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7035", + "$id": "7037", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.commit`.", "type": { - "$id": "7036", + "$id": "7038", "kind": "enumvalue", "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", @@ -90730,7 +90756,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -90750,7 +90776,7 @@ ] }, "input_audio_buffer.clear": { - "$id": "7037", + "$id": "7039", "kind": "model", "name": "RealtimeClientEventInputAudioBufferClear", "namespace": "OpenAI", @@ -90760,17 +90786,17 @@ "discriminatorValue": "input_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7038", + "$id": "7040", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.clear`.", "type": { - "$id": "7039", + "$id": "7041", "kind": "enumvalue", "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", @@ -90778,7 +90804,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -90798,7 +90824,7 @@ ] }, "output_audio_buffer.clear": { - "$id": "7040", + "$id": "7042", "kind": "model", "name": "RealtimeClientEventOutputAudioBufferClear", "namespace": "OpenAI", @@ -90808,17 +90834,17 @@ "discriminatorValue": "output_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7041", + "$id": "7043", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.clear`.", "type": { - "$id": "7042", + "$id": "7044", "kind": "enumvalue", "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", @@ -90826,7 +90852,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -90846,7 +90872,7 @@ ] }, "conversation.item.create": { - "$id": "7043", + "$id": "7045", "kind": "model", "name": "RealtimeClientEventConversationItemCreate", "namespace": "OpenAI", @@ -90856,17 +90882,17 @@ "discriminatorValue": "conversation.item.create", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7044", + "$id": "7046", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.create`.", "type": { - "$id": "7045", + "$id": "7047", "kind": "enumvalue", "name": "conversation_item_create", "value": "conversation.item.create", @@ -90874,7 +90900,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -90892,13 +90918,13 @@ "isHttpMetadata": false }, { - "$id": "7046", + "$id": "7048", "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": "7047", + "$id": "7049", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90918,12 +90944,12 @@ "isHttpMetadata": false }, { - "$id": "7048", + "$id": "7050", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7049", + "$id": "7051", "kind": "model", "name": "RealtimeConversationRequestItem", "namespace": "OpenAI", @@ -90931,7 +90957,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "7050", + "$id": "7052", "kind": "property", "name": "type", "serializedName": "type", @@ -90953,15 +90979,15 @@ }, "properties": [ { - "$ref": "7050" + "$ref": "7052" }, { - "$id": "7051", + "$id": "7053", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7052", + "$id": "7054", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90983,7 +91009,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7053", + "$id": "7055", "kind": "model", "name": "RealtimeRequestMessageItem", "namespace": "OpenAI", @@ -90992,7 +91018,7 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "7054", + "$id": "7056", "kind": "property", "name": "role", "serializedName": "role", @@ -91013,16 +91039,16 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "7049" + "$ref": "7051" }, "properties": [ { - "$id": "7055", + "$id": "7057", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7056", + "$id": "7058", "kind": "enumvalue", "name": "message", "value": "message", @@ -91030,14 +91056,14 @@ "$ref": "1153" }, "enumType": { - "$id": "7057", + "$id": "7059", "kind": "enum", "decorators": [], "name": "RealtimeItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7058", + "$id": "7060", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91046,42 +91072,42 @@ }, "values": [ { - "$id": "7059", + "$id": "7061", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "7058" + "$ref": "7060" }, "enumType": { - "$ref": "7057" + "$ref": "7059" } }, { - "$id": "7060", + "$id": "7062", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "7058" + "$ref": "7060" }, "enumType": { - "$ref": "7057" + "$ref": "7059" } }, { - "$id": "7061", + "$id": "7063", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "7058" + "$ref": "7060" }, "enumType": { - "$ref": "7057" + "$ref": "7059" } } ], @@ -91110,10 +91136,10 @@ "isHttpMetadata": false }, { - "$ref": "7054" + "$ref": "7056" }, { - "$id": "7062", + "$id": "7064", "kind": "property", "name": "status", "serializedName": "status", @@ -91136,7 +91162,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "7063", + "$id": "7065", "kind": "model", "name": "RealtimeRequestSystemMessageItem", "namespace": "OpenAI", @@ -91145,16 +91171,16 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "7053" + "$ref": "7055" }, "properties": [ { - "$id": "7064", + "$id": "7066", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7065", + "$id": "7067", "kind": "enumvalue", "name": "system", "value": "system", @@ -91162,14 +91188,14 @@ "$ref": "1158" }, "enumType": { - "$id": "7066", + "$id": "7068", "kind": "enum", "decorators": [], "name": "RealtimeMessageRole", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7067", + "$id": "7069", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91178,42 +91204,42 @@ }, "values": [ { - "$id": "7068", + "$id": "7070", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "7067" + "$ref": "7069" }, "enumType": { - "$ref": "7066" + "$ref": "7068" } }, { - "$id": "7069", + "$id": "7071", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "7067" + "$ref": "7069" }, "enumType": { - "$ref": "7066" + "$ref": "7068" } }, { - "$id": "7070", + "$id": "7072", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "7067" + "$ref": "7069" }, "enumType": { - "$ref": "7066" + "$ref": "7068" } } ], @@ -91242,16 +91268,16 @@ "isHttpMetadata": false }, { - "$id": "7071", + "$id": "7073", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7072", + "$id": "7074", "kind": "array", "name": "ArrayRealtimeRequestTextContentPart", "valueType": { - "$id": "7073", + "$id": "7075", "kind": "model", "name": "RealtimeRequestTextContentPart", "namespace": "OpenAI", @@ -91260,7 +91286,7 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$id": "7074", + "$id": "7076", "kind": "model", "name": "RealtimeContentPart", "namespace": "OpenAI", @@ -91268,7 +91294,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7075", + "$id": "7077", "kind": "property", "name": "type", "serializedName": "type", @@ -91290,15 +91316,15 @@ }, "properties": [ { - "$ref": "7075" + "$ref": "7077" } ], "discriminatedSubtypes": { "input_text": { - "$ref": "7073" + "$ref": "7075" }, "input_audio": { - "$id": "7076", + "$id": "7078", "kind": "model", "name": "RealtimeRequestAudioContentPart", "namespace": "OpenAI", @@ -91307,16 +91333,16 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "7074" + "$ref": "7076" }, "properties": [ { - "$id": "7077", + "$id": "7079", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7078", + "$id": "7080", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", @@ -91324,14 +91350,14 @@ "$ref": "1168" }, "enumType": { - "$id": "7079", + "$id": "7081", "kind": "enum", "decorators": [], "name": "RealtimeContentPartType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7080", + "$id": "7082", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -91340,55 +91366,55 @@ }, "values": [ { - "$id": "7081", + "$id": "7083", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "7080" + "$ref": "7082" }, "enumType": { - "$ref": "7079" + "$ref": "7081" } }, { - "$id": "7082", + "$id": "7084", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "7080" + "$ref": "7082" }, "enumType": { - "$ref": "7079" + "$ref": "7081" } }, { - "$id": "7083", + "$id": "7085", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "7080" + "$ref": "7082" }, "enumType": { - "$ref": "7079" + "$ref": "7081" } }, { - "$id": "7084", + "$id": "7086", "kind": "enumvalue", "decorators": [], "name": "audio", "value": "audio", "valueType": { - "$ref": "7080" + "$ref": "7082" }, "enumType": { - "$ref": "7079" + "$ref": "7081" } } ], @@ -91417,12 +91443,12 @@ "isHttpMetadata": false }, { - "$id": "7085", + "$id": "7087", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "7086", + "$id": "7088", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91444,7 +91470,7 @@ ] }, "text": { - "$id": "7087", + "$id": "7089", "kind": "model", "name": "RealtimeResponseTextContentPart", "namespace": "OpenAI", @@ -91453,16 +91479,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7074" + "$ref": "7076" }, "properties": [ { - "$id": "7088", + "$id": "7090", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7089", + "$id": "7091", "kind": "enumvalue", "name": "text", "value": "text", @@ -91470,7 +91496,7 @@ "$ref": "1168" }, "enumType": { - "$ref": "7079" + "$ref": "7081" }, "decorators": [] }, @@ -91488,12 +91514,12 @@ "isHttpMetadata": false }, { - "$id": "7090", + "$id": "7092", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "7091", + "$id": "7093", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91515,7 +91541,7 @@ ] }, "audio": { - "$id": "7092", + "$id": "7094", "kind": "model", "name": "RealtimeResponseAudioContentPart", "namespace": "OpenAI", @@ -91524,16 +91550,16 @@ "discriminatorValue": "audio", "decorators": [], "baseModel": { - "$ref": "7074" + "$ref": "7076" }, "properties": [ { - "$id": "7093", + "$id": "7095", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7094", + "$id": "7096", "kind": "enumvalue", "name": "audio", "value": "audio", @@ -91541,7 +91567,7 @@ "$ref": "1168" }, "enumType": { - "$ref": "7079" + "$ref": "7081" }, "decorators": [] }, @@ -91559,15 +91585,15 @@ "isHttpMetadata": false }, { - "$id": "7095", + "$id": "7097", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "7096", + "$id": "7098", "kind": "nullable", "type": { - "$id": "7097", + "$id": "7099", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91594,12 +91620,12 @@ }, "properties": [ { - "$id": "7098", + "$id": "7100", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7099", + "$id": "7101", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -91607,7 +91633,7 @@ "$ref": "1168" }, "enumType": { - "$ref": "7079" + "$ref": "7081" }, "decorators": [] }, @@ -91625,12 +91651,12 @@ "isHttpMetadata": false }, { - "$id": "7100", + "$id": "7102", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "7101", + "$id": "7103", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91670,7 +91696,7 @@ ] }, "user": { - "$id": "7102", + "$id": "7104", "kind": "model", "name": "RealtimeRequestUserMessageItem", "namespace": "OpenAI", @@ -91679,16 +91705,16 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "7053" + "$ref": "7055" }, "properties": [ { - "$id": "7103", + "$id": "7105", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7104", + "$id": "7106", "kind": "enumvalue", "name": "user", "value": "user", @@ -91696,7 +91722,7 @@ "$ref": "1158" }, "enumType": { - "$ref": "7066" + "$ref": "7068" }, "decorators": [] }, @@ -91714,24 +91740,24 @@ "isHttpMetadata": false }, { - "$id": "7105", + "$id": "7107", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7106", + "$id": "7108", "kind": "array", "name": "Array42", "valueType": { - "$id": "7107", + "$id": "7109", "kind": "union", "name": "RealtimeRequestUserMessageItemContent", "variantTypes": [ { - "$ref": "7073" + "$ref": "7075" }, { - "$ref": "7076" + "$ref": "7078" } ], "namespace": "OpenAI", @@ -91756,7 +91782,7 @@ ] }, "assistant": { - "$id": "7108", + "$id": "7110", "kind": "model", "name": "RealtimeRequestAssistantMessageItem", "namespace": "OpenAI", @@ -91765,16 +91791,16 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "7053" + "$ref": "7055" }, "properties": [ { - "$id": "7109", + "$id": "7111", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7110", + "$id": "7112", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -91782,7 +91808,7 @@ "$ref": "1158" }, "enumType": { - "$ref": "7066" + "$ref": "7068" }, "decorators": [] }, @@ -91800,12 +91826,12 @@ "isHttpMetadata": false }, { - "$id": "7111", + "$id": "7113", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$ref": "7072" + "$ref": "7074" }, "optional": false, "readOnly": false, @@ -91825,7 +91851,7 @@ } }, "function_call": { - "$id": "7112", + "$id": "7114", "kind": "model", "name": "RealtimeRequestFunctionCallItem", "namespace": "OpenAI", @@ -91834,16 +91860,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7049" + "$ref": "7051" }, "properties": [ { - "$id": "7113", + "$id": "7115", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7114", + "$id": "7116", "kind": "enumvalue", "name": "function_call", "value": "function_call", @@ -91851,7 +91877,7 @@ "$ref": "1153" }, "enumType": { - "$ref": "7057" + "$ref": "7059" }, "decorators": [] }, @@ -91869,12 +91895,12 @@ "isHttpMetadata": false }, { - "$id": "7115", + "$id": "7117", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7116", + "$id": "7118", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91894,12 +91920,12 @@ "isHttpMetadata": false }, { - "$id": "7117", + "$id": "7119", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7118", + "$id": "7120", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91919,12 +91945,12 @@ "isHttpMetadata": false }, { - "$id": "7119", + "$id": "7121", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7120", + "$id": "7122", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91944,7 +91970,7 @@ "isHttpMetadata": false }, { - "$id": "7121", + "$id": "7123", "kind": "property", "name": "status", "serializedName": "status", @@ -91967,7 +91993,7 @@ ] }, "function_call_output": { - "$id": "7122", + "$id": "7124", "kind": "model", "name": "RealtimeRequestFunctionCallOutputItem", "namespace": "OpenAI", @@ -91976,16 +92002,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7049" + "$ref": "7051" }, "properties": [ { - "$id": "7123", + "$id": "7125", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7124", + "$id": "7126", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", @@ -91993,7 +92019,7 @@ "$ref": "1153" }, "enumType": { - "$ref": "7057" + "$ref": "7059" }, "decorators": [] }, @@ -92011,12 +92037,12 @@ "isHttpMetadata": false }, { - "$id": "7125", + "$id": "7127", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7126", + "$id": "7128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92036,12 +92062,12 @@ "isHttpMetadata": false }, { - "$id": "7127", + "$id": "7129", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7128", + "$id": "7130", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92080,7 +92106,7 @@ ] }, "conversation.item.truncate": { - "$id": "7129", + "$id": "7131", "kind": "model", "name": "RealtimeClientEventConversationItemTruncate", "namespace": "OpenAI", @@ -92090,17 +92116,17 @@ "discriminatorValue": "conversation.item.truncate", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7130", + "$id": "7132", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncate`.", "type": { - "$id": "7131", + "$id": "7133", "kind": "enumvalue", "name": "conversation_item_truncate", "value": "conversation.item.truncate", @@ -92108,7 +92134,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -92126,13 +92152,13 @@ "isHttpMetadata": false }, { - "$id": "7132", + "$id": "7134", "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": "7133", + "$id": "7135", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92152,13 +92178,13 @@ "isHttpMetadata": false }, { - "$id": "7134", + "$id": "7136", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part to truncate. Set this to 0.", "type": { - "$id": "7135", + "$id": "7137", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92178,13 +92204,13 @@ "isHttpMetadata": false }, { - "$id": "7136", + "$id": "7138", "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": "7137", + "$id": "7139", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92206,7 +92232,7 @@ ] }, "conversation.item.delete": { - "$id": "7138", + "$id": "7140", "kind": "model", "name": "RealtimeClientEventConversationItemDelete", "namespace": "OpenAI", @@ -92216,17 +92242,17 @@ "discriminatorValue": "conversation.item.delete", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7139", + "$id": "7141", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.delete`.", "type": { - "$id": "7140", + "$id": "7142", "kind": "enumvalue", "name": "conversation_item_delete", "value": "conversation.item.delete", @@ -92234,7 +92260,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -92252,13 +92278,13 @@ "isHttpMetadata": false }, { - "$id": "7141", + "$id": "7143", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "7142", + "$id": "7144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92280,7 +92306,7 @@ ] }, "response.create": { - "$id": "7143", + "$id": "7145", "kind": "model", "name": "RealtimeClientEventResponseCreate", "namespace": "OpenAI", @@ -92290,17 +92316,17 @@ "discriminatorValue": "response.create", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7144", + "$id": "7146", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.create`.", "type": { - "$id": "7145", + "$id": "7147", "kind": "enumvalue", "name": "response_create", "value": "response.create", @@ -92308,7 +92334,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -92326,12 +92352,12 @@ "isHttpMetadata": false }, { - "$id": "7146", + "$id": "7148", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7147", + "$id": "7149", "kind": "model", "name": "RealtimeResponseCreateParams", "namespace": "OpenAI", @@ -92341,13 +92367,13 @@ "decorators": [], "properties": [ { - "$id": "7148", + "$id": "7150", "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": "6943" + "$ref": "6945" }, "optional": true, "readOnly": false, @@ -92363,13 +92389,13 @@ "isHttpMetadata": false }, { - "$id": "7149", + "$id": "7151", "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": "7150", + "$id": "7152", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92389,7 +92415,7 @@ "isHttpMetadata": false }, { - "$id": "7151", + "$id": "7153", "kind": "property", "name": "voice", "serializedName": "voice", @@ -92411,7 +92437,7 @@ "isHttpMetadata": false }, { - "$id": "7152", + "$id": "7154", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -92433,13 +92459,13 @@ "isHttpMetadata": false }, { - "$id": "7153", + "$id": "7155", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6999" + "$ref": "7001" }, "optional": true, "readOnly": false, @@ -92455,13 +92481,13 @@ "isHttpMetadata": false }, { - "$id": "7154", + "$id": "7156", "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": "7155", + "$id": "7157", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92481,13 +92507,13 @@ "isHttpMetadata": false }, { - "$id": "7156", + "$id": "7158", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7157", + "$id": "7159", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -92507,18 +92533,18 @@ "isHttpMetadata": false }, { - "$id": "7158", + "$id": "7160", "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": "7159", + "$id": "7161", "kind": "union", "name": "RealtimeResponseCreateParamsMaxOutputTokens", "variantTypes": [ { - "$id": "7160", + "$id": "7162", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92545,7 +92571,7 @@ "isHttpMetadata": false }, { - "$id": "7161", + "$id": "7163", "kind": "property", "name": "conversation", "serializedName": "conversation", @@ -92567,7 +92593,7 @@ "isHttpMetadata": false }, { - "$id": "7162", + "$id": "7164", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -92589,17 +92615,17 @@ "isHttpMetadata": false }, { - "$id": "7163", + "$id": "7165", "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": "7164", + "$id": "7166", "kind": "array", "name": "ArrayRealtimeConversationRequestItem", "valueType": { - "$ref": "7049" + "$ref": "7051" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -92635,7 +92661,7 @@ ] }, "response.cancel": { - "$id": "7165", + "$id": "7167", "kind": "model", "name": "RealtimeClientEventResponseCancel", "namespace": "OpenAI", @@ -92645,17 +92671,17 @@ "discriminatorValue": "response.cancel", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7166", + "$id": "7168", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.cancel`.", "type": { - "$id": "7167", + "$id": "7169", "kind": "enumvalue", "name": "response_cancel", "value": "response.cancel", @@ -92663,7 +92689,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -92681,13 +92707,13 @@ "isHttpMetadata": false }, { - "$id": "7168", + "$id": "7170", "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": "7169", + "$id": "7171", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92709,7 +92735,7 @@ ] }, "conversation.item.retrieve": { - "$id": "7170", + "$id": "7172", "kind": "model", "name": "RealtimeClientEventConversationItemRetrieve", "namespace": "OpenAI", @@ -92719,17 +92745,17 @@ "discriminatorValue": "conversation.item.retrieve", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7171", + "$id": "7173", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieve`.", "type": { - "$id": "7172", + "$id": "7174", "kind": "enumvalue", "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", @@ -92737,7 +92763,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -92755,13 +92781,13 @@ "isHttpMetadata": false }, { - "$id": "7173", + "$id": "7175", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "7174", + "$id": "7176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92783,7 +92809,7 @@ ] }, "transcription_session.update": { - "$id": "7175", + "$id": "7177", "kind": "model", "name": "RealtimeClientEventTranscriptionSessionUpdate", "namespace": "OpenAI", @@ -92793,17 +92819,17 @@ "discriminatorValue": "transcription_session.update", "decorators": [], "baseModel": { - "$ref": "6919" + "$ref": "6921" }, "properties": [ { - "$id": "7176", + "$id": "7178", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.update`.", "type": { - "$id": "7177", + "$id": "7179", "kind": "enumvalue", "name": "transcription_session_update", "value": "transcription_session.update", @@ -92811,7 +92837,7 @@ "$ref": "1098" }, "enumType": { - "$ref": "6926" + "$ref": "6928" }, "decorators": [] }, @@ -92829,12 +92855,12 @@ "isHttpMetadata": false }, { - "$id": "7178", + "$id": "7180", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7179", + "$id": "7181", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequest", "namespace": "OpenAI", @@ -92844,13 +92870,13 @@ "decorators": [], "properties": [ { - "$id": "7180", + "$id": "7182", "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": "7181", + "$id": "7183", "kind": "array", "name": "Array43", "valueType": { @@ -92873,7 +92899,7 @@ "isHttpMetadata": false }, { - "$id": "7182", + "$id": "7184", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -92895,13 +92921,13 @@ "isHttpMetadata": false }, { - "$id": "7183", + "$id": "7185", "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": "7184", + "$id": "7186", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -92910,7 +92936,7 @@ "decorators": [], "properties": [ { - "$id": "7185", + "$id": "7187", "kind": "property", "name": "model", "serializedName": "model", @@ -92932,13 +92958,13 @@ "isHttpMetadata": false }, { - "$id": "7186", + "$id": "7188", "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": "7187", + "$id": "7189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92958,13 +92984,13 @@ "isHttpMetadata": false }, { - "$id": "7188", + "$id": "7190", "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": "7189", + "$id": "7191", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92999,13 +93025,13 @@ "isHttpMetadata": false }, { - "$id": "7190", + "$id": "7192", "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": "7191", + "$id": "7193", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -93014,7 +93040,7 @@ "decorators": [], "properties": [ { - "$id": "7192", + "$id": "7194", "kind": "property", "name": "type", "serializedName": "type", @@ -93036,7 +93062,7 @@ "isHttpMetadata": false }, { - "$id": "7193", + "$id": "7195", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -93058,13 +93084,13 @@ "isHttpMetadata": false }, { - "$id": "7194", + "$id": "7196", "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": "7195", + "$id": "7197", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -93084,13 +93110,13 @@ "isHttpMetadata": false }, { - "$id": "7196", + "$id": "7198", "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": "7197", + "$id": "7199", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93110,13 +93136,13 @@ "isHttpMetadata": false }, { - "$id": "7198", + "$id": "7200", "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": "7199", + "$id": "7201", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93136,13 +93162,13 @@ "isHttpMetadata": false }, { - "$id": "7200", + "$id": "7202", "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": "7201", + "$id": "7203", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -93162,13 +93188,13 @@ "isHttpMetadata": false }, { - "$id": "7202", + "$id": "7204", "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": "7203", + "$id": "7205", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -93203,16 +93229,16 @@ "isHttpMetadata": false }, { - "$id": "7204", + "$id": "7206", "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": "7205", + "$id": "7207", "kind": "nullable", "type": { - "$id": "7206", + "$id": "7208", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -93221,7 +93247,7 @@ "decorators": [], "properties": [ { - "$id": "7207", + "$id": "7209", "kind": "property", "name": "type", "serializedName": "type", @@ -93260,7 +93286,7 @@ "isHttpMetadata": false }, { - "$id": "7208", + "$id": "7210", "kind": "property", "name": "include", "serializedName": "include", @@ -93282,13 +93308,13 @@ "isHttpMetadata": false }, { - "$id": "7209", + "$id": "7211", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7210", + "$id": "7212", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -93297,13 +93323,13 @@ "decorators": [], "properties": [ { - "$id": "7211", + "$id": "7213", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7212", + "$id": "7214", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -93312,7 +93338,7 @@ "decorators": [], "properties": [ { - "$id": "7213", + "$id": "7215", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -93334,13 +93360,13 @@ "isHttpMetadata": false }, { - "$id": "7214", + "$id": "7216", "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": "7215", + "$id": "7217", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93409,139 +93435,139 @@ } }, { - "$ref": "6923" - }, - { - "$ref": "6941" + "$ref": "6925" }, { - "$ref": "6952" + "$ref": "6943" }, { - "$ref": "6960" + "$ref": "6954" }, { - "$ref": "6966" + "$ref": "6962" }, { - "$ref": "6981" + "$ref": "6968" }, { - "$ref": "6986" + "$ref": "6983" }, { "$ref": "6988" }, { - "$ref": "6995" + "$ref": "6990" }, { - "$ref": "7000" + "$ref": "6997" }, { "$ref": "7002" }, { - "$ref": "7016" + "$ref": "7004" }, { "$ref": "7018" }, { - "$ref": "7021" + "$ref": "7020" }, { - "$ref": "7029" + "$ref": "7023" }, { - "$ref": "7034" + "$ref": "7031" }, { - "$ref": "7037" + "$ref": "7036" }, { - "$ref": "7040" + "$ref": "7039" }, { - "$ref": "7043" + "$ref": "7042" }, { - "$ref": "7049" + "$ref": "7045" }, { - "$ref": "7053" + "$ref": "7051" }, { - "$ref": "7063" + "$ref": "7055" }, { - "$ref": "7073" + "$ref": "7065" }, { - "$ref": "7074" + "$ref": "7075" }, { "$ref": "7076" }, { - "$ref": "7087" + "$ref": "7078" }, { - "$ref": "7092" + "$ref": "7089" }, { - "$ref": "7102" + "$ref": "7094" }, { - "$ref": "7108" + "$ref": "7104" }, { - "$ref": "7112" + "$ref": "7110" }, { - "$ref": "7122" + "$ref": "7114" }, { - "$ref": "7129" + "$ref": "7124" }, { - "$ref": "7138" + "$ref": "7131" }, { - "$ref": "7143" + "$ref": "7140" }, { - "$ref": "7147" + "$ref": "7145" }, { - "$ref": "7165" + "$ref": "7149" }, { - "$ref": "7170" + "$ref": "7167" }, { - "$ref": "7175" + "$ref": "7172" }, { - "$ref": "7179" + "$ref": "7177" }, { - "$ref": "7184" + "$ref": "7181" }, { - "$ref": "7191" + "$ref": "7186" }, { - "$ref": "7206" + "$ref": "7193" }, { - "$ref": "7210" + "$ref": "7208" }, { "$ref": "7212" }, { - "$id": "7216", + "$ref": "7214" + }, + { + "$id": "7218", "kind": "model", "name": "RealtimeServerEvent", "namespace": "OpenAI", @@ -93550,7 +93576,7 @@ "doc": "A realtime server event.", "decorators": [], "discriminatorProperty": { - "$id": "7217", + "$id": "7219", "kind": "property", "name": "type", "serializedName": "type", @@ -93573,15 +93599,15 @@ }, "properties": [ { - "$ref": "7217" + "$ref": "7219" }, { - "$id": "7218", + "$id": "7220", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "7219", + "$id": "7221", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93603,7 +93629,7 @@ ], "discriminatedSubtypes": { "error": { - "$id": "7220", + "$id": "7222", "kind": "model", "name": "RealtimeServerEventError", "namespace": "OpenAI", @@ -93613,17 +93639,17 @@ "discriminatorValue": "error", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7221", + "$id": "7223", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `error`.", "type": { - "$id": "7222", + "$id": "7224", "kind": "enumvalue", "name": "error", "value": "error", @@ -93631,14 +93657,14 @@ "$ref": "1210" }, "enumType": { - "$id": "7223", + "$id": "7225", "kind": "enum", "decorators": [], "name": "RealtimeServerEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7224", + "$id": "7226", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -93647,445 +93673,445 @@ }, "values": [ { - "$id": "7225", + "$id": "7227", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7226", + "$id": "7228", "kind": "enumvalue", "decorators": [], "name": "session_created", "value": "session.created", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7227", + "$id": "7229", "kind": "enumvalue", "decorators": [], "name": "session_updated", "value": "session.updated", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7228", + "$id": "7230", "kind": "enumvalue", "decorators": [], "name": "conversation_created", "value": "conversation.created", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7229", + "$id": "7231", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7230", + "$id": "7232", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7231", + "$id": "7233", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7232", + "$id": "7234", "kind": "enumvalue", "decorators": [], "name": "conversation_item_created", "value": "conversation.item.created", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7233", + "$id": "7235", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7234", + "$id": "7236", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncated", "value": "conversation.item.truncated", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7235", + "$id": "7237", "kind": "enumvalue", "decorators": [], "name": "conversation_item_deleted", "value": "conversation.item.deleted", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7236", + "$id": "7238", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7237", + "$id": "7239", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7238", + "$id": "7240", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7239", + "$id": "7241", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7240", + "$id": "7242", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7241", + "$id": "7243", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7242", + "$id": "7244", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7243", + "$id": "7245", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7244", + "$id": "7246", "kind": "enumvalue", "decorators": [], "name": "response_done", "value": "response.done", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7245", + "$id": "7247", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7246", + "$id": "7248", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7247", + "$id": "7249", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7248", + "$id": "7250", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7249", + "$id": "7251", "kind": "enumvalue", "decorators": [], "name": "response_text_delta", "value": "response.text.delta", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7250", + "$id": "7252", "kind": "enumvalue", "decorators": [], "name": "response_text_done", "value": "response.text.done", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7251", + "$id": "7253", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7252", + "$id": "7254", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7253", + "$id": "7255", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7254", + "$id": "7256", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7255", + "$id": "7257", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7256", + "$id": "7258", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7257", + "$id": "7259", "kind": "enumvalue", "decorators": [], "name": "transcription_session_updated", "value": "transcription_session.updated", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } }, { - "$id": "7258", + "$id": "7260", "kind": "enumvalue", "decorators": [], "name": "rate_limits_updated", "value": "rate_limits.updated", "valueType": { - "$ref": "7224" + "$ref": "7226" }, "enumType": { - "$ref": "7223" + "$ref": "7225" } } ], @@ -94114,13 +94140,13 @@ "isHttpMetadata": false }, { - "$id": "7259", + "$id": "7261", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the error.", "type": { - "$id": "7260", + "$id": "7262", "kind": "model", "name": "RealtimeServerEventErrorError", "namespace": "OpenAI", @@ -94129,13 +94155,13 @@ "decorators": [], "properties": [ { - "$id": "7261", + "$id": "7263", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error (e.g., \"invalid_request_error\", \"server_error\").", "type": { - "$id": "7262", + "$id": "7264", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94155,16 +94181,16 @@ "isHttpMetadata": false }, { - "$id": "7263", + "$id": "7265", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7264", + "$id": "7266", "kind": "nullable", "type": { - "$id": "7265", + "$id": "7267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94186,13 +94212,13 @@ "isHttpMetadata": false }, { - "$id": "7266", + "$id": "7268", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7267", + "$id": "7269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94212,16 +94238,16 @@ "isHttpMetadata": false }, { - "$id": "7268", + "$id": "7270", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7269", + "$id": "7271", "kind": "nullable", "type": { - "$id": "7270", + "$id": "7272", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94243,16 +94269,16 @@ "isHttpMetadata": false }, { - "$id": "7271", + "$id": "7273", "kind": "property", "name": "event_id", "serializedName": "event_id", "doc": "The event_id of the client event that caused the error, if applicable.", "type": { - "$id": "7272", + "$id": "7274", "kind": "nullable", "type": { - "$id": "7273", + "$id": "7275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94291,7 +94317,7 @@ ] }, "session.created": { - "$id": "7274", + "$id": "7276", "kind": "model", "name": "RealtimeServerEventSessionCreated", "namespace": "OpenAI", @@ -94301,17 +94327,17 @@ "discriminatorValue": "session.created", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7275", + "$id": "7277", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.created`.", "type": { - "$id": "7276", + "$id": "7278", "kind": "enumvalue", "name": "session_created", "value": "session.created", @@ -94319,7 +94345,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -94337,12 +94363,12 @@ "isHttpMetadata": false }, { - "$id": "7277", + "$id": "7279", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7278", + "$id": "7280", "kind": "model", "name": "RealtimeResponseSession", "namespace": "OpenAI", @@ -94351,7 +94377,7 @@ "decorators": [], "properties": [ { - "$id": "7279", + "$id": "7281", "kind": "property", "name": "object", "serializedName": "object", @@ -94372,12 +94398,12 @@ "isHttpMetadata": false }, { - "$id": "7280", + "$id": "7282", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7281", + "$id": "7283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94397,12 +94423,12 @@ "isHttpMetadata": false }, { - "$id": "7282", + "$id": "7284", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$id": "7283", + "$id": "7285", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94422,12 +94448,12 @@ "isHttpMetadata": false }, { - "$id": "7284", + "$id": "7286", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$ref": "6943" + "$ref": "6945" }, "optional": false, "readOnly": false, @@ -94443,12 +94469,12 @@ "isHttpMetadata": false }, { - "$id": "7285", + "$id": "7287", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "7286", + "$id": "7288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94468,7 +94494,7 @@ "isHttpMetadata": false }, { - "$id": "7287", + "$id": "7289", "kind": "property", "name": "voice", "serializedName": "voice", @@ -94489,7 +94515,7 @@ "isHttpMetadata": false }, { - "$id": "7288", + "$id": "7290", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -94510,7 +94536,7 @@ "isHttpMetadata": false }, { - "$id": "7289", + "$id": "7291", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -94531,15 +94557,15 @@ "isHttpMetadata": false }, { - "$id": "7290", + "$id": "7292", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "7291", + "$id": "7293", "kind": "nullable", "type": { - "$ref": "6952" + "$ref": "6954" }, "namespace": "OpenAI" }, @@ -94557,12 +94583,12 @@ "isHttpMetadata": false }, { - "$id": "7292", + "$id": "7294", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$ref": "6960" + "$ref": "6962" }, "optional": false, "readOnly": false, @@ -94578,12 +94604,12 @@ "isHttpMetadata": false }, { - "$id": "7293", + "$id": "7295", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$ref": "6986" + "$ref": "6988" }, "optional": false, "readOnly": false, @@ -94599,12 +94625,12 @@ "isHttpMetadata": false }, { - "$id": "7294", + "$id": "7296", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$ref": "6999" + "$ref": "7001" }, "optional": false, "readOnly": false, @@ -94620,12 +94646,12 @@ "isHttpMetadata": false }, { - "$id": "7295", + "$id": "7297", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$ref": "7015" + "$ref": "7017" }, "optional": false, "readOnly": false, @@ -94641,12 +94667,12 @@ "isHttpMetadata": false }, { - "$id": "7296", + "$id": "7298", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7297", + "$id": "7299", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -94666,20 +94692,20 @@ "isHttpMetadata": false }, { - "$id": "7298", + "$id": "7300", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7299", + "$id": "7301", "kind": "nullable", "type": { - "$id": "7300", + "$id": "7302", "kind": "union", "name": "RealtimeResponseSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7301", + "$id": "7303", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94725,7 +94751,7 @@ ] }, "session.updated": { - "$id": "7302", + "$id": "7304", "kind": "model", "name": "RealtimeServerEventSessionUpdated", "namespace": "OpenAI", @@ -94735,17 +94761,17 @@ "discriminatorValue": "session.updated", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7303", + "$id": "7305", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.updated`.", "type": { - "$id": "7304", + "$id": "7306", "kind": "enumvalue", "name": "session_updated", "value": "session.updated", @@ -94753,7 +94779,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -94771,12 +94797,12 @@ "isHttpMetadata": false }, { - "$id": "7305", + "$id": "7307", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$ref": "7278" + "$ref": "7280" }, "optional": false, "readOnly": false, @@ -94794,7 +94820,7 @@ ] }, "conversation.created": { - "$id": "7306", + "$id": "7308", "kind": "model", "name": "RealtimeServerEventConversationCreated", "namespace": "OpenAI", @@ -94804,17 +94830,17 @@ "discriminatorValue": "conversation.created", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7307", + "$id": "7309", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.created`.", "type": { - "$id": "7308", + "$id": "7310", "kind": "enumvalue", "name": "conversation_created", "value": "conversation.created", @@ -94822,7 +94848,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -94840,13 +94866,13 @@ "isHttpMetadata": false }, { - "$id": "7309", + "$id": "7311", "kind": "property", "name": "conversation", "serializedName": "conversation", "doc": "The conversation resource.", "type": { - "$id": "7310", + "$id": "7312", "kind": "model", "name": "RealtimeServerEventConversationCreatedConversation", "namespace": "OpenAI", @@ -94855,13 +94881,13 @@ "decorators": [], "properties": [ { - "$id": "7311", + "$id": "7313", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "7312", + "$id": "7314", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94881,13 +94907,13 @@ "isHttpMetadata": false }, { - "$id": "7313", + "$id": "7315", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, must be `realtime.conversation`.", "type": { - "$id": "7314", + "$id": "7316", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94924,7 +94950,7 @@ ] }, "input_audio_buffer.committed": { - "$id": "7315", + "$id": "7317", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCommitted", "namespace": "OpenAI", @@ -94934,17 +94960,17 @@ "discriminatorValue": "input_audio_buffer.committed", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7316", + "$id": "7318", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.committed`.", "type": { - "$id": "7317", + "$id": "7319", "kind": "enumvalue", "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", @@ -94952,7 +94978,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -94970,13 +94996,13 @@ "isHttpMetadata": false }, { - "$id": "7318", + "$id": "7320", "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": "7319", + "$id": "7321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94996,13 +95022,13 @@ "isHttpMetadata": false }, { - "$id": "7320", + "$id": "7322", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7321", + "$id": "7323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95024,7 +95050,7 @@ ] }, "input_audio_buffer.cleared": { - "$id": "7322", + "$id": "7324", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCleared", "namespace": "OpenAI", @@ -95034,17 +95060,17 @@ "discriminatorValue": "input_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7323", + "$id": "7325", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.cleared`.", "type": { - "$id": "7324", + "$id": "7326", "kind": "enumvalue", "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", @@ -95052,7 +95078,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -95072,7 +95098,7 @@ ] }, "input_audio_buffer.speech_started": { - "$id": "7325", + "$id": "7327", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStarted", "namespace": "OpenAI", @@ -95082,17 +95108,17 @@ "discriminatorValue": "input_audio_buffer.speech_started", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7326", + "$id": "7328", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_started`.", "type": { - "$id": "7327", + "$id": "7329", "kind": "enumvalue", "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", @@ -95100,7 +95126,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -95118,13 +95144,13 @@ "isHttpMetadata": false }, { - "$id": "7328", + "$id": "7330", "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": "7329", + "$id": "7331", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95144,13 +95170,13 @@ "isHttpMetadata": false }, { - "$id": "7330", + "$id": "7332", "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": "7331", + "$id": "7333", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95172,7 +95198,7 @@ ] }, "input_audio_buffer.speech_stopped": { - "$id": "7332", + "$id": "7334", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStopped", "namespace": "OpenAI", @@ -95182,17 +95208,17 @@ "discriminatorValue": "input_audio_buffer.speech_stopped", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7333", + "$id": "7335", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_stopped`.", "type": { - "$id": "7334", + "$id": "7336", "kind": "enumvalue", "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", @@ -95200,7 +95226,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -95218,13 +95244,13 @@ "isHttpMetadata": false }, { - "$id": "7335", + "$id": "7337", "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": "7336", + "$id": "7338", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95244,13 +95270,13 @@ "isHttpMetadata": false }, { - "$id": "7337", + "$id": "7339", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7338", + "$id": "7340", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95272,7 +95298,7 @@ ] }, "output_audio_buffer.cleared": { - "$id": "7339", + "$id": "7341", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferCleared", "namespace": "OpenAI", @@ -95282,17 +95308,17 @@ "discriminatorValue": "output_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7340", + "$id": "7342", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.cleared`.", "type": { - "$id": "7341", + "$id": "7343", "kind": "enumvalue", "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", @@ -95300,7 +95326,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -95318,13 +95344,13 @@ "isHttpMetadata": false }, { - "$id": "7342", + "$id": "7344", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7343", + "$id": "7345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95346,7 +95372,7 @@ ] }, "output_audio_buffer.started": { - "$id": "7344", + "$id": "7346", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStarted", "namespace": "OpenAI", @@ -95356,17 +95382,17 @@ "discriminatorValue": "output_audio_buffer.started", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7345", + "$id": "7347", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.started`.", "type": { - "$id": "7346", + "$id": "7348", "kind": "enumvalue", "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", @@ -95374,7 +95400,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -95392,13 +95418,13 @@ "isHttpMetadata": false }, { - "$id": "7347", + "$id": "7349", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7348", + "$id": "7350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95420,7 +95446,7 @@ ] }, "output_audio_buffer.stopped": { - "$id": "7349", + "$id": "7351", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStopped", "namespace": "OpenAI", @@ -95430,17 +95456,17 @@ "discriminatorValue": "output_audio_buffer.stopped", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7350", + "$id": "7352", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.stopped`.", "type": { - "$id": "7351", + "$id": "7353", "kind": "enumvalue", "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", @@ -95448,7 +95474,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -95466,13 +95492,13 @@ "isHttpMetadata": false }, { - "$id": "7352", + "$id": "7354", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7353", + "$id": "7355", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95494,7 +95520,7 @@ ] }, "conversation.item.created": { - "$id": "7354", + "$id": "7356", "kind": "model", "name": "RealtimeServerEventConversationItemCreated", "namespace": "OpenAI", @@ -95504,17 +95530,17 @@ "discriminatorValue": "conversation.item.created", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7355", + "$id": "7357", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.created`.", "type": { - "$id": "7356", + "$id": "7358", "kind": "enumvalue", "name": "conversation_item_created", "value": "conversation.item.created", @@ -95522,7 +95548,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -95540,13 +95566,13 @@ "isHttpMetadata": false }, { - "$id": "7357", + "$id": "7359", "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": "7358", + "$id": "7360", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95566,12 +95592,12 @@ "isHttpMetadata": false }, { - "$id": "7359", + "$id": "7361", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7360", + "$id": "7362", "kind": "model", "name": "RealtimeConversationResponseItem", "namespace": "OpenAI", @@ -95579,7 +95605,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7361", + "$id": "7363", "kind": "property", "name": "type", "serializedName": "type", @@ -95601,7 +95627,7 @@ }, "properties": [ { - "$id": "7362", + "$id": "7364", "kind": "property", "name": "object", "serializedName": "object", @@ -95622,18 +95648,18 @@ "isHttpMetadata": false }, { - "$ref": "7361" + "$ref": "7363" }, { - "$id": "7363", + "$id": "7365", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7364", + "$id": "7366", "kind": "nullable", "type": { - "$id": "7365", + "$id": "7367", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95657,7 +95683,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7366", + "$id": "7368", "kind": "model", "name": "RealtimeResponseMessageItem", "namespace": "OpenAI", @@ -95666,16 +95692,16 @@ "discriminatorValue": "message", "decorators": [], "baseModel": { - "$ref": "7360" + "$ref": "7362" }, "properties": [ { - "$id": "7367", + "$id": "7369", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7056" + "$ref": "7058" }, "optional": false, "readOnly": false, @@ -95691,7 +95717,7 @@ "isHttpMetadata": false }, { - "$id": "7368", + "$id": "7370", "kind": "property", "name": "role", "serializedName": "role", @@ -95712,16 +95738,16 @@ "isHttpMetadata": false }, { - "$id": "7369", + "$id": "7371", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7370", + "$id": "7372", "kind": "array", "name": "ArrayRealtimeContentPart", "valueType": { - "$ref": "7074" + "$ref": "7076" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -95740,7 +95766,7 @@ "isHttpMetadata": false }, { - "$id": "7371", + "$id": "7373", "kind": "property", "name": "status", "serializedName": "status", @@ -95763,7 +95789,7 @@ ] }, "function_call": { - "$id": "7372", + "$id": "7374", "kind": "model", "name": "RealtimeResponseFunctionCallItem", "namespace": "OpenAI", @@ -95772,16 +95798,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7360" + "$ref": "7362" }, "properties": [ { - "$id": "7373", + "$id": "7375", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7114" + "$ref": "7116" }, "optional": false, "readOnly": false, @@ -95797,12 +95823,12 @@ "isHttpMetadata": false }, { - "$id": "7374", + "$id": "7376", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7375", + "$id": "7377", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95822,12 +95848,12 @@ "isHttpMetadata": false }, { - "$id": "7376", + "$id": "7378", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7377", + "$id": "7379", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95847,12 +95873,12 @@ "isHttpMetadata": false }, { - "$id": "7378", + "$id": "7380", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7379", + "$id": "7381", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95872,7 +95898,7 @@ "isHttpMetadata": false }, { - "$id": "7380", + "$id": "7382", "kind": "property", "name": "status", "serializedName": "status", @@ -95895,7 +95921,7 @@ ] }, "function_call_output": { - "$id": "7381", + "$id": "7383", "kind": "model", "name": "RealtimeResponseFunctionCallOutputItem", "namespace": "OpenAI", @@ -95904,16 +95930,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7360" + "$ref": "7362" }, "properties": [ { - "$id": "7382", + "$id": "7384", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7124" + "$ref": "7126" }, "optional": false, "readOnly": false, @@ -95929,12 +95955,12 @@ "isHttpMetadata": false }, { - "$id": "7383", + "$id": "7385", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7384", + "$id": "7386", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95954,12 +95980,12 @@ "isHttpMetadata": false }, { - "$id": "7385", + "$id": "7387", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7386", + "$id": "7388", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95998,7 +96024,7 @@ ] }, "conversation.item.input_audio_transcription.completed": { - "$id": "7387", + "$id": "7389", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionCompleted", "namespace": "OpenAI", @@ -96008,17 +96034,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.completed", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7388", + "$id": "7390", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.completed`.", "type": { - "$id": "7389", + "$id": "7391", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", @@ -96026,7 +96052,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -96044,13 +96070,13 @@ "isHttpMetadata": false }, { - "$id": "7390", + "$id": "7392", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item containing the audio.", "type": { - "$id": "7391", + "$id": "7393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96070,13 +96096,13 @@ "isHttpMetadata": false }, { - "$id": "7392", + "$id": "7394", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7393", + "$id": "7395", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96096,13 +96122,13 @@ "isHttpMetadata": false }, { - "$id": "7394", + "$id": "7396", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcribed text.", "type": { - "$id": "7395", + "$id": "7397", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96122,20 +96148,20 @@ "isHttpMetadata": false }, { - "$id": "7396", + "$id": "7398", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7397", + "$id": "7399", "kind": "nullable", "type": { - "$id": "7398", + "$id": "7400", "kind": "array", "name": "ArrayLogProbProperties", "valueType": { - "$id": "7399", + "$id": "7401", "kind": "model", "name": "LogProbProperties", "namespace": "OpenAI", @@ -96145,13 +96171,13 @@ "decorators": [], "properties": [ { - "$id": "7400", + "$id": "7402", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "7401", + "$id": "7403", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96171,13 +96197,13 @@ "isHttpMetadata": false }, { - "$id": "7402", + "$id": "7404", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "7403", + "$id": "7405", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -96197,7 +96223,7 @@ "isHttpMetadata": false }, { - "$id": "7404", + "$id": "7406", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -96241,7 +96267,7 @@ ] }, "conversation.item.input_audio_transcription.failed": { - "$id": "7405", + "$id": "7407", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailed", "namespace": "OpenAI", @@ -96251,17 +96277,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.failed", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7406", + "$id": "7408", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.failed`.", "type": { - "$id": "7407", + "$id": "7409", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", @@ -96269,7 +96295,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -96287,13 +96313,13 @@ "isHttpMetadata": false }, { - "$id": "7408", + "$id": "7410", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item.", "type": { - "$id": "7409", + "$id": "7411", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96313,13 +96339,13 @@ "isHttpMetadata": false }, { - "$id": "7410", + "$id": "7412", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7411", + "$id": "7413", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96339,13 +96365,13 @@ "isHttpMetadata": false }, { - "$id": "7412", + "$id": "7414", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the transcription error.", "type": { - "$id": "7413", + "$id": "7415", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailedError", "namespace": "OpenAI", @@ -96354,13 +96380,13 @@ "decorators": [], "properties": [ { - "$id": "7414", + "$id": "7416", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7415", + "$id": "7417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96380,13 +96406,13 @@ "isHttpMetadata": false }, { - "$id": "7416", + "$id": "7418", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7417", + "$id": "7419", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96406,13 +96432,13 @@ "isHttpMetadata": false }, { - "$id": "7418", + "$id": "7420", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7419", + "$id": "7421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96432,13 +96458,13 @@ "isHttpMetadata": false }, { - "$id": "7420", + "$id": "7422", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7421", + "$id": "7423", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96475,7 +96501,7 @@ ] }, "conversation.item.truncated": { - "$id": "7422", + "$id": "7424", "kind": "model", "name": "RealtimeServerEventConversationItemTruncated", "namespace": "OpenAI", @@ -96485,17 +96511,17 @@ "discriminatorValue": "conversation.item.truncated", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7423", + "$id": "7425", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncated`.", "type": { - "$id": "7424", + "$id": "7426", "kind": "enumvalue", "name": "conversation_item_truncated", "value": "conversation.item.truncated", @@ -96503,7 +96529,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -96521,13 +96547,13 @@ "isHttpMetadata": false }, { - "$id": "7425", + "$id": "7427", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the assistant message item that was truncated.", "type": { - "$id": "7426", + "$id": "7428", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96547,13 +96573,13 @@ "isHttpMetadata": false }, { - "$id": "7427", + "$id": "7429", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was truncated.", "type": { - "$id": "7428", + "$id": "7430", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96573,13 +96599,13 @@ "isHttpMetadata": false }, { - "$id": "7429", + "$id": "7431", "kind": "property", "name": "audio_end_ms", "serializedName": "audio_end_ms", "doc": "The duration up to which the audio was truncated, in milliseconds.", "type": { - "$id": "7430", + "$id": "7432", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96601,7 +96627,7 @@ ] }, "conversation.item.deleted": { - "$id": "7431", + "$id": "7433", "kind": "model", "name": "RealtimeServerEventConversationItemDeleted", "namespace": "OpenAI", @@ -96611,17 +96637,17 @@ "discriminatorValue": "conversation.item.deleted", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7432", + "$id": "7434", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.deleted`.", "type": { - "$id": "7433", + "$id": "7435", "kind": "enumvalue", "name": "conversation_item_deleted", "value": "conversation.item.deleted", @@ -96629,7 +96655,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -96647,13 +96673,13 @@ "isHttpMetadata": false }, { - "$id": "7434", + "$id": "7436", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item that was deleted.", "type": { - "$id": "7435", + "$id": "7437", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96675,7 +96701,7 @@ ] }, "response.created": { - "$id": "7436", + "$id": "7438", "kind": "model", "name": "RealtimeServerEventResponseCreated", "namespace": "OpenAI", @@ -96685,17 +96711,17 @@ "discriminatorValue": "response.created", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7437", + "$id": "7439", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.created`.", "type": { - "$id": "7438", + "$id": "7440", "kind": "enumvalue", "name": "response_created", "value": "response.created", @@ -96703,7 +96729,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -96721,12 +96747,12 @@ "isHttpMetadata": false }, { - "$id": "7439", + "$id": "7441", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7440", + "$id": "7442", "kind": "model", "name": "RealtimeResponse", "namespace": "OpenAI", @@ -96736,13 +96762,13 @@ "decorators": [], "properties": [ { - "$id": "7441", + "$id": "7443", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the response.", "type": { - "$id": "7442", + "$id": "7444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96762,7 +96788,7 @@ "isHttpMetadata": false }, { - "$id": "7443", + "$id": "7445", "kind": "property", "name": "object", "serializedName": "object", @@ -96784,7 +96810,7 @@ "isHttpMetadata": false }, { - "$id": "7444", + "$id": "7446", "kind": "property", "name": "status", "serializedName": "status", @@ -96806,13 +96832,13 @@ "isHttpMetadata": false }, { - "$id": "7445", + "$id": "7447", "kind": "property", "name": "status_details", "serializedName": "status_details", "doc": "Additional details about the status.", "type": { - "$id": "7446", + "$id": "7448", "kind": "model", "name": "RealtimeResponseStatusDetails", "namespace": "OpenAI", @@ -96821,7 +96847,7 @@ "decorators": [], "properties": [ { - "$id": "7447", + "$id": "7449", "kind": "property", "name": "type", "serializedName": "type", @@ -96843,7 +96869,7 @@ "isHttpMetadata": false }, { - "$id": "7448", + "$id": "7450", "kind": "property", "name": "reason", "serializedName": "reason", @@ -96865,13 +96891,13 @@ "isHttpMetadata": false }, { - "$id": "7449", + "$id": "7451", "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": "7450", + "$id": "7452", "kind": "model", "name": "RealtimeResponseStatusDetailsError", "namespace": "OpenAI", @@ -96880,13 +96906,13 @@ "decorators": [], "properties": [ { - "$id": "7451", + "$id": "7453", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7452", + "$id": "7454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96906,13 +96932,13 @@ "isHttpMetadata": false }, { - "$id": "7453", + "$id": "7455", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7454", + "$id": "7456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96962,17 +96988,17 @@ "isHttpMetadata": false }, { - "$id": "7455", + "$id": "7457", "kind": "property", "name": "output", "serializedName": "output", "doc": "The list of output items generated by the response.", "type": { - "$id": "7456", + "$id": "7458", "kind": "array", "name": "ArrayRealtimeConversationResponseItem", "valueType": { - "$ref": "7360" + "$ref": "7362" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -96991,7 +97017,7 @@ "isHttpMetadata": false }, { - "$id": "7457", + "$id": "7459", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -97013,13 +97039,13 @@ "isHttpMetadata": false }, { - "$id": "7458", + "$id": "7460", "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": "7459", + "$id": "7461", "kind": "model", "name": "RealtimeResponseUsage", "namespace": "OpenAI", @@ -97028,13 +97054,13 @@ "decorators": [], "properties": [ { - "$id": "7460", + "$id": "7462", "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": "7461", + "$id": "7463", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97054,13 +97080,13 @@ "isHttpMetadata": false }, { - "$id": "7462", + "$id": "7464", "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": "7463", + "$id": "7465", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97080,13 +97106,13 @@ "isHttpMetadata": false }, { - "$id": "7464", + "$id": "7466", "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": "7465", + "$id": "7467", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97106,13 +97132,13 @@ "isHttpMetadata": false }, { - "$id": "7466", + "$id": "7468", "kind": "property", "name": "input_token_details", "serializedName": "input_token_details", "doc": "Details about the input tokens used in the Response.", "type": { - "$id": "7467", + "$id": "7469", "kind": "model", "name": "RealtimeResponseUsageInputTokenDetails", "namespace": "OpenAI", @@ -97121,13 +97147,13 @@ "decorators": [], "properties": [ { - "$id": "7468", + "$id": "7470", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of cached tokens used in the Response.", "type": { - "$id": "7469", + "$id": "7471", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97147,13 +97173,13 @@ "isHttpMetadata": false }, { - "$id": "7470", + "$id": "7472", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7471", + "$id": "7473", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97173,13 +97199,13 @@ "isHttpMetadata": false }, { - "$id": "7472", + "$id": "7474", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7473", + "$id": "7475", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97214,13 +97240,13 @@ "isHttpMetadata": false }, { - "$id": "7474", + "$id": "7476", "kind": "property", "name": "output_token_details", "serializedName": "output_token_details", "doc": "Details about the output tokens used in the Response.", "type": { - "$id": "7475", + "$id": "7477", "kind": "model", "name": "RealtimeResponseUsageOutputTokenDetails", "namespace": "OpenAI", @@ -97229,13 +97255,13 @@ "decorators": [], "properties": [ { - "$id": "7476", + "$id": "7478", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7477", + "$id": "7479", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97255,13 +97281,13 @@ "isHttpMetadata": false }, { - "$id": "7478", + "$id": "7480", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7479", + "$id": "7481", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97311,13 +97337,13 @@ "isHttpMetadata": false }, { - "$id": "7480", + "$id": "7482", "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": "7481", + "$id": "7483", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97337,7 +97363,7 @@ "isHttpMetadata": false }, { - "$id": "7482", + "$id": "7484", "kind": "property", "name": "voice", "serializedName": "voice", @@ -97359,13 +97385,13 @@ "isHttpMetadata": false }, { - "$id": "7483", + "$id": "7485", "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": "7484", + "$id": "7486", "kind": "array", "name": "Array44", "valueType": { @@ -97388,7 +97414,7 @@ "isHttpMetadata": false }, { - "$id": "7485", + "$id": "7487", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -97410,13 +97436,13 @@ "isHttpMetadata": false }, { - "$id": "7486", + "$id": "7488", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7487", + "$id": "7489", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -97436,18 +97462,18 @@ "isHttpMetadata": false }, { - "$id": "7488", + "$id": "7490", "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": "7489", + "$id": "7491", "kind": "union", "name": "RealtimeResponseMaxOutputTokens", "variantTypes": [ { - "$id": "7490", + "$id": "7492", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97491,7 +97517,7 @@ ] }, "response.done": { - "$id": "7491", + "$id": "7493", "kind": "model", "name": "RealtimeServerEventResponseDone", "namespace": "OpenAI", @@ -97501,17 +97527,17 @@ "discriminatorValue": "response.done", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7492", + "$id": "7494", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.done`.", "type": { - "$id": "7493", + "$id": "7495", "kind": "enumvalue", "name": "response_done", "value": "response.done", @@ -97519,7 +97545,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -97537,12 +97563,12 @@ "isHttpMetadata": false }, { - "$id": "7494", + "$id": "7496", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$ref": "7440" + "$ref": "7442" }, "optional": false, "readOnly": false, @@ -97560,7 +97586,7 @@ ] }, "response.output_item.added": { - "$id": "7495", + "$id": "7497", "kind": "model", "name": "RealtimeServerEventResponseOutputItemAdded", "namespace": "OpenAI", @@ -97570,17 +97596,17 @@ "discriminatorValue": "response.output_item.added", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7496", + "$id": "7498", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.added`.", "type": { - "$id": "7497", + "$id": "7499", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", @@ -97588,7 +97614,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -97606,13 +97632,13 @@ "isHttpMetadata": false }, { - "$id": "7498", + "$id": "7500", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7499", + "$id": "7501", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97632,13 +97658,13 @@ "isHttpMetadata": false }, { - "$id": "7500", + "$id": "7502", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7501", + "$id": "7503", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97658,12 +97684,12 @@ "isHttpMetadata": false }, { - "$id": "7502", + "$id": "7504", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7360" + "$ref": "7362" }, "optional": false, "readOnly": false, @@ -97681,7 +97707,7 @@ ] }, "response.output_item.done": { - "$id": "7503", + "$id": "7505", "kind": "model", "name": "RealtimeServerEventResponseOutputItemDone", "namespace": "OpenAI", @@ -97691,17 +97717,17 @@ "discriminatorValue": "response.output_item.done", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7504", + "$id": "7506", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.done`.", "type": { - "$id": "7505", + "$id": "7507", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", @@ -97709,7 +97735,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -97727,13 +97753,13 @@ "isHttpMetadata": false }, { - "$id": "7506", + "$id": "7508", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7507", + "$id": "7509", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97753,13 +97779,13 @@ "isHttpMetadata": false }, { - "$id": "7508", + "$id": "7510", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7509", + "$id": "7511", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97779,12 +97805,12 @@ "isHttpMetadata": false }, { - "$id": "7510", + "$id": "7512", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7360" + "$ref": "7362" }, "optional": false, "readOnly": false, @@ -97802,7 +97828,7 @@ ] }, "response.content_part.added": { - "$id": "7511", + "$id": "7513", "kind": "model", "name": "RealtimeServerEventResponseContentPartAdded", "namespace": "OpenAI", @@ -97812,17 +97838,17 @@ "discriminatorValue": "response.content_part.added", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7512", + "$id": "7514", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.added`.", "type": { - "$id": "7513", + "$id": "7515", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", @@ -97830,7 +97856,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -97848,13 +97874,13 @@ "isHttpMetadata": false }, { - "$id": "7514", + "$id": "7516", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7515", + "$id": "7517", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97874,13 +97900,13 @@ "isHttpMetadata": false }, { - "$id": "7516", + "$id": "7518", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to which the content part was added.", "type": { - "$id": "7517", + "$id": "7519", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97900,13 +97926,13 @@ "isHttpMetadata": false }, { - "$id": "7518", + "$id": "7520", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7519", + "$id": "7521", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97926,13 +97952,13 @@ "isHttpMetadata": false }, { - "$id": "7520", + "$id": "7522", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7521", + "$id": "7523", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97952,13 +97978,13 @@ "isHttpMetadata": false }, { - "$id": "7522", + "$id": "7524", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that was added.", "type": { - "$ref": "7074" + "$ref": "7076" }, "optional": false, "readOnly": false, @@ -97976,7 +98002,7 @@ ] }, "response.content_part.done": { - "$id": "7523", + "$id": "7525", "kind": "model", "name": "RealtimeServerEventResponseContentPartDone", "namespace": "OpenAI", @@ -97986,17 +98012,17 @@ "discriminatorValue": "response.content_part.done", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7524", + "$id": "7526", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.done`.", "type": { - "$id": "7525", + "$id": "7527", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", @@ -98004,7 +98030,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -98022,13 +98048,13 @@ "isHttpMetadata": false }, { - "$id": "7526", + "$id": "7528", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7527", + "$id": "7529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98048,13 +98074,13 @@ "isHttpMetadata": false }, { - "$id": "7528", + "$id": "7530", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7529", + "$id": "7531", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98074,13 +98100,13 @@ "isHttpMetadata": false }, { - "$id": "7530", + "$id": "7532", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7531", + "$id": "7533", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98100,13 +98126,13 @@ "isHttpMetadata": false }, { - "$id": "7532", + "$id": "7534", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7533", + "$id": "7535", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98126,13 +98152,13 @@ "isHttpMetadata": false }, { - "$id": "7534", + "$id": "7536", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that is done.", "type": { - "$ref": "7074" + "$ref": "7076" }, "optional": false, "readOnly": false, @@ -98150,7 +98176,7 @@ ] }, "response.text.delta": { - "$id": "7535", + "$id": "7537", "kind": "model", "name": "RealtimeServerEventResponseTextDelta", "namespace": "OpenAI", @@ -98160,17 +98186,17 @@ "discriminatorValue": "response.text.delta", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7536", + "$id": "7538", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.delta`.", "type": { - "$id": "7537", + "$id": "7539", "kind": "enumvalue", "name": "response_text_delta", "value": "response.text.delta", @@ -98178,7 +98204,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -98196,13 +98222,13 @@ "isHttpMetadata": false }, { - "$id": "7538", + "$id": "7540", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7539", + "$id": "7541", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98222,13 +98248,13 @@ "isHttpMetadata": false }, { - "$id": "7540", + "$id": "7542", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7541", + "$id": "7543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98248,13 +98274,13 @@ "isHttpMetadata": false }, { - "$id": "7542", + "$id": "7544", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7543", + "$id": "7545", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98274,13 +98300,13 @@ "isHttpMetadata": false }, { - "$id": "7544", + "$id": "7546", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7545", + "$id": "7547", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98300,13 +98326,13 @@ "isHttpMetadata": false }, { - "$id": "7546", + "$id": "7548", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7547", + "$id": "7549", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98328,7 +98354,7 @@ ] }, "response.text.done": { - "$id": "7548", + "$id": "7550", "kind": "model", "name": "RealtimeServerEventResponseTextDone", "namespace": "OpenAI", @@ -98338,17 +98364,17 @@ "discriminatorValue": "response.text.done", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7549", + "$id": "7551", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.done`.", "type": { - "$id": "7550", + "$id": "7552", "kind": "enumvalue", "name": "response_text_done", "value": "response.text.done", @@ -98356,7 +98382,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -98374,13 +98400,13 @@ "isHttpMetadata": false }, { - "$id": "7551", + "$id": "7553", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7552", + "$id": "7554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98400,13 +98426,13 @@ "isHttpMetadata": false }, { - "$id": "7553", + "$id": "7555", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7554", + "$id": "7556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98426,13 +98452,13 @@ "isHttpMetadata": false }, { - "$id": "7555", + "$id": "7557", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7556", + "$id": "7558", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98452,13 +98478,13 @@ "isHttpMetadata": false }, { - "$id": "7557", + "$id": "7559", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7558", + "$id": "7560", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98478,13 +98504,13 @@ "isHttpMetadata": false }, { - "$id": "7559", + "$id": "7561", "kind": "property", "name": "text", "serializedName": "text", "doc": "The final text content.", "type": { - "$id": "7560", + "$id": "7562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98506,7 +98532,7 @@ ] }, "response.audio_transcript.delta": { - "$id": "7561", + "$id": "7563", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDelta", "namespace": "OpenAI", @@ -98516,17 +98542,17 @@ "discriminatorValue": "response.audio_transcript.delta", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7562", + "$id": "7564", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.delta`.", "type": { - "$id": "7563", + "$id": "7565", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", @@ -98534,7 +98560,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -98552,13 +98578,13 @@ "isHttpMetadata": false }, { - "$id": "7564", + "$id": "7566", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7565", + "$id": "7567", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98578,13 +98604,13 @@ "isHttpMetadata": false }, { - "$id": "7566", + "$id": "7568", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7567", + "$id": "7569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98604,13 +98630,13 @@ "isHttpMetadata": false }, { - "$id": "7568", + "$id": "7570", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7569", + "$id": "7571", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98630,13 +98656,13 @@ "isHttpMetadata": false }, { - "$id": "7570", + "$id": "7572", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7571", + "$id": "7573", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98656,13 +98682,13 @@ "isHttpMetadata": false }, { - "$id": "7572", + "$id": "7574", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The transcript delta.", "type": { - "$id": "7573", + "$id": "7575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98684,7 +98710,7 @@ ] }, "response.audio_transcript.done": { - "$id": "7574", + "$id": "7576", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDone", "namespace": "OpenAI", @@ -98694,17 +98720,17 @@ "discriminatorValue": "response.audio_transcript.done", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7575", + "$id": "7577", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.done`.", "type": { - "$id": "7576", + "$id": "7578", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", @@ -98712,7 +98738,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -98730,13 +98756,13 @@ "isHttpMetadata": false }, { - "$id": "7577", + "$id": "7579", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7578", + "$id": "7580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98756,13 +98782,13 @@ "isHttpMetadata": false }, { - "$id": "7579", + "$id": "7581", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7580", + "$id": "7582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98782,13 +98808,13 @@ "isHttpMetadata": false }, { - "$id": "7581", + "$id": "7583", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7582", + "$id": "7584", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98808,13 +98834,13 @@ "isHttpMetadata": false }, { - "$id": "7583", + "$id": "7585", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7584", + "$id": "7586", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98834,13 +98860,13 @@ "isHttpMetadata": false }, { - "$id": "7585", + "$id": "7587", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The final transcript of the audio.", "type": { - "$id": "7586", + "$id": "7588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98862,7 +98888,7 @@ ] }, "response.audio.delta": { - "$id": "7587", + "$id": "7589", "kind": "model", "name": "RealtimeServerEventResponseAudioDelta", "namespace": "OpenAI", @@ -98872,17 +98898,17 @@ "discriminatorValue": "response.audio.delta", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7588", + "$id": "7590", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.delta`.", "type": { - "$id": "7589", + "$id": "7591", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", @@ -98890,7 +98916,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -98908,13 +98934,13 @@ "isHttpMetadata": false }, { - "$id": "7590", + "$id": "7592", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7591", + "$id": "7593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98934,13 +98960,13 @@ "isHttpMetadata": false }, { - "$id": "7592", + "$id": "7594", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7593", + "$id": "7595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98960,13 +98986,13 @@ "isHttpMetadata": false }, { - "$id": "7594", + "$id": "7596", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7595", + "$id": "7597", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98986,13 +99012,13 @@ "isHttpMetadata": false }, { - "$id": "7596", + "$id": "7598", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7597", + "$id": "7599", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99012,13 +99038,13 @@ "isHttpMetadata": false }, { - "$id": "7598", + "$id": "7600", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "Base64-encoded audio data delta.", "type": { - "$id": "7599", + "$id": "7601", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -99041,7 +99067,7 @@ ] }, "response.audio.done": { - "$id": "7600", + "$id": "7602", "kind": "model", "name": "RealtimeServerEventResponseAudioDone", "namespace": "OpenAI", @@ -99051,17 +99077,17 @@ "discriminatorValue": "response.audio.done", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7601", + "$id": "7603", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.done`.", "type": { - "$id": "7602", + "$id": "7604", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", @@ -99069,7 +99095,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -99087,13 +99113,13 @@ "isHttpMetadata": false }, { - "$id": "7603", + "$id": "7605", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7604", + "$id": "7606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99113,13 +99139,13 @@ "isHttpMetadata": false }, { - "$id": "7605", + "$id": "7607", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7606", + "$id": "7608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99139,13 +99165,13 @@ "isHttpMetadata": false }, { - "$id": "7607", + "$id": "7609", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7608", + "$id": "7610", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99165,13 +99191,13 @@ "isHttpMetadata": false }, { - "$id": "7609", + "$id": "7611", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7610", + "$id": "7612", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99193,7 +99219,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "7611", + "$id": "7613", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDelta", "namespace": "OpenAI", @@ -99203,17 +99229,17 @@ "discriminatorValue": "response.function_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7612", + "$id": "7614", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.delta`.", "type": { - "$id": "7613", + "$id": "7615", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", @@ -99221,7 +99247,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -99239,13 +99265,13 @@ "isHttpMetadata": false }, { - "$id": "7614", + "$id": "7616", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7615", + "$id": "7617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99265,13 +99291,13 @@ "isHttpMetadata": false }, { - "$id": "7616", + "$id": "7618", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7617", + "$id": "7619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99291,13 +99317,13 @@ "isHttpMetadata": false }, { - "$id": "7618", + "$id": "7620", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7619", + "$id": "7621", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99317,13 +99343,13 @@ "isHttpMetadata": false }, { - "$id": "7620", + "$id": "7622", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7621", + "$id": "7623", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99343,13 +99369,13 @@ "isHttpMetadata": false }, { - "$id": "7622", + "$id": "7624", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The arguments delta as a JSON string.", "type": { - "$id": "7623", + "$id": "7625", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99371,7 +99397,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "7624", + "$id": "7626", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDone", "namespace": "OpenAI", @@ -99381,17 +99407,17 @@ "discriminatorValue": "response.function_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7625", + "$id": "7627", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.done`.", "type": { - "$id": "7626", + "$id": "7628", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", @@ -99399,7 +99425,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -99417,13 +99443,13 @@ "isHttpMetadata": false }, { - "$id": "7627", + "$id": "7629", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7628", + "$id": "7630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99443,13 +99469,13 @@ "isHttpMetadata": false }, { - "$id": "7629", + "$id": "7631", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7630", + "$id": "7632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99469,13 +99495,13 @@ "isHttpMetadata": false }, { - "$id": "7631", + "$id": "7633", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7632", + "$id": "7634", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99495,13 +99521,13 @@ "isHttpMetadata": false }, { - "$id": "7633", + "$id": "7635", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7634", + "$id": "7636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99521,13 +99547,13 @@ "isHttpMetadata": false }, { - "$id": "7635", + "$id": "7637", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The final arguments as a JSON string.", "type": { - "$id": "7636", + "$id": "7638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99549,7 +99575,7 @@ ] }, "rate_limits.updated": { - "$id": "7637", + "$id": "7639", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdated", "namespace": "OpenAI", @@ -99559,17 +99585,17 @@ "discriminatorValue": "rate_limits.updated", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7638", + "$id": "7640", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `rate_limits.updated`.", "type": { - "$id": "7639", + "$id": "7641", "kind": "enumvalue", "name": "rate_limits_updated", "value": "rate_limits.updated", @@ -99577,7 +99603,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -99595,17 +99621,17 @@ "isHttpMetadata": false }, { - "$id": "7640", + "$id": "7642", "kind": "property", "name": "rate_limits", "serializedName": "rate_limits", "doc": "List of rate limit information.", "type": { - "$id": "7641", + "$id": "7643", "kind": "array", "name": "ArrayRealtimeServerEventRateLimitsUpdatedRateLimitsItem", "valueType": { - "$id": "7642", + "$id": "7644", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdatedRateLimitsItem", "namespace": "OpenAI", @@ -99614,13 +99640,13 @@ "decorators": [], "properties": [ { - "$id": "7643", + "$id": "7645", "kind": "property", "name": "name", "serializedName": "name", "doc": "The rate limit property name that this item includes information about.", "type": { - "$id": "7644", + "$id": "7646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99640,13 +99666,13 @@ "isHttpMetadata": false }, { - "$id": "7645", + "$id": "7647", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "The maximum configured limit for this rate limit property.", "type": { - "$id": "7646", + "$id": "7648", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99666,13 +99692,13 @@ "isHttpMetadata": false }, { - "$id": "7647", + "$id": "7649", "kind": "property", "name": "remaining", "serializedName": "remaining", "doc": "The remaining quota available against the configured limit for this rate limit property.", "type": { - "$id": "7648", + "$id": "7650", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99692,18 +99718,18 @@ "isHttpMetadata": false }, { - "$id": "7649", + "$id": "7651", "kind": "property", "name": "reset_seconds", "serializedName": "reset_seconds", "doc": "The remaining time, in seconds, until this rate limit property is reset.", "type": { - "$id": "7650", + "$id": "7652", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "7651", + "$id": "7653", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -99746,7 +99772,7 @@ ] }, "conversation.item.input_audio_transcription.delta": { - "$id": "7652", + "$id": "7654", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionDelta", "namespace": "OpenAI", @@ -99756,17 +99782,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.delta", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7653", + "$id": "7655", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.input_audio_transcription.delta`.", "type": { - "$id": "7654", + "$id": "7656", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", @@ -99774,7 +99800,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -99792,13 +99818,13 @@ "isHttpMetadata": false }, { - "$id": "7655", + "$id": "7657", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7656", + "$id": "7658", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99818,13 +99844,13 @@ "isHttpMetadata": false }, { - "$id": "7657", + "$id": "7659", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7658", + "$id": "7660", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99844,13 +99870,13 @@ "isHttpMetadata": false }, { - "$id": "7659", + "$id": "7661", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7660", + "$id": "7662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99870,16 +99896,16 @@ "isHttpMetadata": false }, { - "$id": "7661", + "$id": "7663", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7662", + "$id": "7664", "kind": "nullable", "type": { - "$ref": "7398" + "$ref": "7400" }, "namespace": "OpenAI" }, @@ -99899,7 +99925,7 @@ ] }, "conversation.item.retrieved": { - "$id": "7663", + "$id": "7665", "kind": "model", "name": "RealtimeServerEventConversationItemRetrieved", "namespace": "OpenAI", @@ -99909,17 +99935,17 @@ "discriminatorValue": "conversation.item.retrieved", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7664", + "$id": "7666", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieved`.", "type": { - "$id": "7665", + "$id": "7667", "kind": "enumvalue", "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", @@ -99927,7 +99953,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -99945,12 +99971,12 @@ "isHttpMetadata": false }, { - "$id": "7666", + "$id": "7668", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7360" + "$ref": "7362" }, "optional": false, "readOnly": false, @@ -99968,7 +99994,7 @@ ] }, "transcription_session.updated": { - "$id": "7667", + "$id": "7669", "kind": "model", "name": "RealtimeServerEventTranscriptionSessionUpdated", "namespace": "OpenAI", @@ -99978,17 +100004,17 @@ "discriminatorValue": "transcription_session.updated", "decorators": [], "baseModel": { - "$ref": "7216" + "$ref": "7218" }, "properties": [ { - "$id": "7668", + "$id": "7670", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.updated`.", "type": { - "$id": "7669", + "$id": "7671", "kind": "enumvalue", "name": "transcription_session_updated", "value": "transcription_session.updated", @@ -99996,7 +100022,7 @@ "$ref": "1210" }, "enumType": { - "$ref": "7223" + "$ref": "7225" }, "decorators": [] }, @@ -100014,12 +100040,12 @@ "isHttpMetadata": false }, { - "$id": "7670", + "$id": "7672", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7671", + "$id": "7673", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponse", "namespace": "OpenAI", @@ -100029,13 +100055,13 @@ "decorators": [], "properties": [ { - "$id": "7672", + "$id": "7674", "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": "7673", + "$id": "7675", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -100044,13 +100070,13 @@ "decorators": [], "properties": [ { - "$id": "7674", + "$id": "7676", "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": "7675", + "$id": "7677", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100070,18 +100096,18 @@ "isHttpMetadata": false }, { - "$id": "7676", + "$id": "7678", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7677", + "$id": "7679", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7678", + "$id": "7680", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100119,13 +100145,13 @@ "isHttpMetadata": false }, { - "$id": "7679", + "$id": "7681", "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": "7680", + "$id": "7682", "kind": "array", "name": "Array45", "valueType": { @@ -100148,13 +100174,13 @@ "isHttpMetadata": false }, { - "$id": "7681", + "$id": "7683", "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": "7682", + "$id": "7684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100174,13 +100200,13 @@ "isHttpMetadata": false }, { - "$id": "7683", + "$id": "7685", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration of the transcription model.", "type": { - "$id": "7684", + "$id": "7686", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -100189,7 +100215,7 @@ "decorators": [], "properties": [ { - "$id": "7685", + "$id": "7687", "kind": "property", "name": "model", "serializedName": "model", @@ -100211,13 +100237,13 @@ "isHttpMetadata": false }, { - "$id": "7686", + "$id": "7688", "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": "7687", + "$id": "7689", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100237,13 +100263,13 @@ "isHttpMetadata": false }, { - "$id": "7688", + "$id": "7690", "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": "7689", + "$id": "7691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100278,13 +100304,13 @@ "isHttpMetadata": false }, { - "$id": "7690", + "$id": "7692", "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": "7691", + "$id": "7693", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -100293,13 +100319,13 @@ "decorators": [], "properties": [ { - "$id": "7692", + "$id": "7694", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7693", + "$id": "7695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100319,13 +100345,13 @@ "isHttpMetadata": false }, { - "$id": "7694", + "$id": "7696", "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": "7695", + "$id": "7697", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100345,13 +100371,13 @@ "isHttpMetadata": false }, { - "$id": "7696", + "$id": "7698", "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": "7697", + "$id": "7699", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100371,13 +100397,13 @@ "isHttpMetadata": false }, { - "$id": "7698", + "$id": "7700", "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": "7699", + "$id": "7701", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100431,169 +100457,169 @@ } }, { - "$ref": "7220" + "$ref": "7222" }, { - "$ref": "7260" + "$ref": "7262" }, { - "$ref": "7274" + "$ref": "7276" }, { - "$ref": "7278" + "$ref": "7280" }, { - "$ref": "7302" + "$ref": "7304" }, { - "$ref": "7306" + "$ref": "7308" }, { - "$ref": "7310" + "$ref": "7312" }, { - "$ref": "7315" + "$ref": "7317" }, { - "$ref": "7322" + "$ref": "7324" }, { - "$ref": "7325" + "$ref": "7327" }, { - "$ref": "7332" + "$ref": "7334" }, { - "$ref": "7339" + "$ref": "7341" }, { - "$ref": "7344" + "$ref": "7346" }, { - "$ref": "7349" + "$ref": "7351" }, { - "$ref": "7354" + "$ref": "7356" }, { - "$ref": "7360" + "$ref": "7362" }, { - "$ref": "7366" + "$ref": "7368" }, { - "$ref": "7372" + "$ref": "7374" }, { - "$ref": "7381" + "$ref": "7383" }, { - "$ref": "7387" + "$ref": "7389" }, { - "$ref": "7399" + "$ref": "7401" }, { - "$ref": "7405" + "$ref": "7407" }, { - "$ref": "7413" + "$ref": "7415" }, { - "$ref": "7422" + "$ref": "7424" }, { - "$ref": "7431" + "$ref": "7433" }, { - "$ref": "7436" + "$ref": "7438" }, { - "$ref": "7440" + "$ref": "7442" }, { - "$ref": "7446" + "$ref": "7448" }, { - "$ref": "7450" + "$ref": "7452" }, { - "$ref": "7459" + "$ref": "7461" }, { - "$ref": "7467" + "$ref": "7469" }, { - "$ref": "7475" + "$ref": "7477" }, { - "$ref": "7491" + "$ref": "7493" }, { - "$ref": "7495" + "$ref": "7497" }, { - "$ref": "7503" + "$ref": "7505" }, { - "$ref": "7511" + "$ref": "7513" }, { - "$ref": "7523" + "$ref": "7525" }, { - "$ref": "7535" + "$ref": "7537" }, { - "$ref": "7548" + "$ref": "7550" }, { - "$ref": "7561" + "$ref": "7563" }, { - "$ref": "7574" + "$ref": "7576" }, { - "$ref": "7587" + "$ref": "7589" }, { - "$ref": "7600" + "$ref": "7602" }, { - "$ref": "7611" + "$ref": "7613" }, { - "$ref": "7624" + "$ref": "7626" }, { - "$ref": "7637" + "$ref": "7639" }, { - "$ref": "7642" + "$ref": "7644" }, { - "$ref": "7652" + "$ref": "7654" }, { - "$ref": "7663" + "$ref": "7665" }, { - "$ref": "7667" + "$ref": "7669" }, { - "$ref": "7671" + "$ref": "7673" }, { - "$ref": "7673" + "$ref": "7675" }, { - "$ref": "7684" + "$ref": "7686" }, { - "$ref": "7691" + "$ref": "7693" }, { - "$id": "7700", + "$id": "7702", "kind": "model", "name": "RealtimeSessionCreateRequest", "namespace": "OpenAI", @@ -100603,13 +100629,13 @@ "decorators": [], "properties": [ { - "$id": "7701", + "$id": "7703", "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": "6943" + "$ref": "6945" }, "optional": true, "readOnly": false, @@ -100625,7 +100651,7 @@ "isHttpMetadata": false }, { - "$id": "7702", + "$id": "7704", "kind": "property", "name": "model", "serializedName": "model", @@ -100647,13 +100673,13 @@ "isHttpMetadata": false }, { - "$id": "7703", + "$id": "7705", "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": "7704", + "$id": "7706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100673,7 +100699,7 @@ "isHttpMetadata": false }, { - "$id": "7705", + "$id": "7707", "kind": "property", "name": "voice", "serializedName": "voice", @@ -100695,7 +100721,7 @@ "isHttpMetadata": false }, { - "$id": "7706", + "$id": "7708", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -100717,7 +100743,7 @@ "isHttpMetadata": false }, { - "$id": "7707", + "$id": "7709", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -100739,13 +100765,13 @@ "isHttpMetadata": false }, { - "$id": "7708", + "$id": "7710", "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": "7709", + "$id": "7711", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -100754,13 +100780,13 @@ "decorators": [], "properties": [ { - "$id": "7710", + "$id": "7712", "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": "7711", + "$id": "7713", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100780,13 +100806,13 @@ "isHttpMetadata": false }, { - "$id": "7712", + "$id": "7714", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio. Supplying the input language in\n[ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format\nwill improve accuracy and latency.", "type": { - "$id": "7713", + "$id": "7715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100806,13 +100832,13 @@ "isHttpMetadata": false }, { - "$id": "7714", + "$id": "7716", "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": "7715", + "$id": "7717", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100847,13 +100873,13 @@ "isHttpMetadata": false }, { - "$id": "7716", + "$id": "7718", "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": "7717", + "$id": "7719", "kind": "model", "name": "RealtimeSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -100862,7 +100888,7 @@ "decorators": [], "properties": [ { - "$id": "7718", + "$id": "7720", "kind": "property", "name": "type", "serializedName": "type", @@ -100884,7 +100910,7 @@ "isHttpMetadata": false }, { - "$id": "7719", + "$id": "7721", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -100906,13 +100932,13 @@ "isHttpMetadata": false }, { - "$id": "7720", + "$id": "7722", "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": "7721", + "$id": "7723", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100932,13 +100958,13 @@ "isHttpMetadata": false }, { - "$id": "7722", + "$id": "7724", "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": "7723", + "$id": "7725", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100958,13 +100984,13 @@ "isHttpMetadata": false }, { - "$id": "7724", + "$id": "7726", "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": "7725", + "$id": "7727", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100984,13 +101010,13 @@ "isHttpMetadata": false }, { - "$id": "7726", + "$id": "7728", "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": "7727", + "$id": "7729", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -101010,13 +101036,13 @@ "isHttpMetadata": false }, { - "$id": "7728", + "$id": "7730", "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": "7729", + "$id": "7731", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -101051,16 +101077,16 @@ "isHttpMetadata": false }, { - "$id": "7730", + "$id": "7732", "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": "7731", + "$id": "7733", "kind": "nullable", "type": { - "$id": "7732", + "$id": "7734", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -101069,7 +101095,7 @@ "decorators": [], "properties": [ { - "$id": "7733", + "$id": "7735", "kind": "property", "name": "type", "serializedName": "type", @@ -101108,13 +101134,13 @@ "isHttpMetadata": false }, { - "$id": "7734", + "$id": "7736", "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": "7735", + "$id": "7737", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101134,13 +101160,13 @@ "isHttpMetadata": false }, { - "$id": "7736", + "$id": "7738", "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": "7737", + "$id": "7739", "kind": "union", "name": "RealtimeSessionCreateRequestTracing", "variantTypes": [ @@ -101148,7 +101174,7 @@ "$ref": "1745" }, { - "$id": "7738", + "$id": "7740", "kind": "model", "name": "RealtimeSessionCreateRequestTracing1", "namespace": "OpenAI", @@ -101157,13 +101183,13 @@ "decorators": [], "properties": [ { - "$id": "7739", + "$id": "7741", "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": "7740", + "$id": "7742", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101183,13 +101209,13 @@ "isHttpMetadata": false }, { - "$id": "7741", + "$id": "7743", "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": "7742", + "$id": "7744", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101209,13 +101235,13 @@ "isHttpMetadata": false }, { - "$id": "7743", + "$id": "7745", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7744", + "$id": "7746", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -101254,13 +101280,13 @@ "isHttpMetadata": false }, { - "$id": "7745", + "$id": "7747", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6999" + "$ref": "7001" }, "optional": true, "readOnly": false, @@ -101276,13 +101302,13 @@ "isHttpMetadata": false }, { - "$id": "7746", + "$id": "7748", "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": "7747", + "$id": "7749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101302,13 +101328,13 @@ "isHttpMetadata": false }, { - "$id": "7748", + "$id": "7750", "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": "7749", + "$id": "7751", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101328,18 +101354,18 @@ "isHttpMetadata": false }, { - "$id": "7750", + "$id": "7752", "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": "7751", + "$id": "7753", "kind": "union", "name": "RealtimeSessionCreateRequestMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7752", + "$id": "7754", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101366,13 +101392,13 @@ "isHttpMetadata": false }, { - "$id": "7753", + "$id": "7755", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7754", + "$id": "7756", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -101381,13 +101407,13 @@ "decorators": [], "properties": [ { - "$id": "7755", + "$id": "7757", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7756", + "$id": "7758", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -101396,7 +101422,7 @@ "decorators": [], "properties": [ { - "$id": "7757", + "$id": "7759", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -101418,13 +101444,13 @@ "isHttpMetadata": false }, { - "$id": "7758", + "$id": "7760", "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": "7759", + "$id": "7761", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101476,25 +101502,25 @@ ] }, { - "$ref": "7709" + "$ref": "7711" }, { - "$ref": "7717" + "$ref": "7719" }, { - "$ref": "7732" + "$ref": "7734" }, { - "$ref": "7738" + "$ref": "7740" }, { - "$ref": "7754" + "$ref": "7756" }, { - "$ref": "7756" + "$ref": "7758" }, { - "$id": "7760", + "$id": "7762", "kind": "model", "name": "RealtimeSessionCreateResponse", "namespace": "OpenAI", @@ -101504,13 +101530,13 @@ "decorators": [], "properties": [ { - "$id": "7761", + "$id": "7763", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Ephemeral key returned by the API.", "type": { - "$id": "7762", + "$id": "7764", "kind": "model", "name": "RealtimeSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -101519,13 +101545,13 @@ "decorators": [], "properties": [ { - "$id": "7763", + "$id": "7765", "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": "7764", + "$id": "7766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101545,18 +101571,18 @@ "isHttpMetadata": false }, { - "$id": "7765", + "$id": "7767", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7766", + "$id": "7768", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7767", + "$id": "7769", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101594,13 +101620,13 @@ "isHttpMetadata": false }, { - "$id": "7768", + "$id": "7770", "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": "6943" + "$ref": "6945" }, "optional": true, "readOnly": false, @@ -101616,13 +101642,13 @@ "isHttpMetadata": false }, { - "$id": "7769", + "$id": "7771", "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": "7770", + "$id": "7772", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101642,7 +101668,7 @@ "isHttpMetadata": false }, { - "$id": "7771", + "$id": "7773", "kind": "property", "name": "voice", "serializedName": "voice", @@ -101664,7 +101690,7 @@ "isHttpMetadata": false }, { - "$id": "7772", + "$id": "7774", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -101686,7 +101712,7 @@ "isHttpMetadata": false }, { - "$id": "7773", + "$id": "7775", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -101708,13 +101734,13 @@ "isHttpMetadata": false }, { - "$id": "7774", + "$id": "7776", "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": "7775", + "$id": "7777", "kind": "model", "name": "RealtimeSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -101723,13 +101749,13 @@ "decorators": [], "properties": [ { - "$id": "7776", + "$id": "7778", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for transcription, `whisper-1` is the only currently\nsupported model.", "type": { - "$id": "7777", + "$id": "7779", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101764,13 +101790,13 @@ "isHttpMetadata": false }, { - "$id": "7778", + "$id": "7780", "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": "7779", + "$id": "7781", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101790,13 +101816,13 @@ "isHttpMetadata": false }, { - "$id": "7780", + "$id": "7782", "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": "7781", + "$id": "7783", "kind": "union", "name": "RealtimeSessionCreateResponseTracing", "variantTypes": [ @@ -101804,7 +101830,7 @@ "$ref": "1749" }, { - "$id": "7782", + "$id": "7784", "kind": "model", "name": "RealtimeSessionCreateResponseTracing1", "namespace": "OpenAI", @@ -101813,13 +101839,13 @@ "decorators": [], "properties": [ { - "$id": "7783", + "$id": "7785", "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": "7784", + "$id": "7786", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101839,13 +101865,13 @@ "isHttpMetadata": false }, { - "$id": "7785", + "$id": "7787", "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": "7786", + "$id": "7788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101865,13 +101891,13 @@ "isHttpMetadata": false }, { - "$id": "7787", + "$id": "7789", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7788", + "$id": "7790", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -101910,13 +101936,13 @@ "isHttpMetadata": false }, { - "$id": "7789", + "$id": "7791", "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": "7790", + "$id": "7792", "kind": "model", "name": "RealtimeSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -101925,13 +101951,13 @@ "decorators": [], "properties": [ { - "$id": "7791", + "$id": "7793", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7792", + "$id": "7794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101951,13 +101977,13 @@ "isHttpMetadata": false }, { - "$id": "7793", + "$id": "7795", "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": "7794", + "$id": "7796", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101977,13 +102003,13 @@ "isHttpMetadata": false }, { - "$id": "7795", + "$id": "7797", "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": "7796", + "$id": "7798", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102003,13 +102029,13 @@ "isHttpMetadata": false }, { - "$id": "7797", + "$id": "7799", "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": "7798", + "$id": "7800", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102044,13 +102070,13 @@ "isHttpMetadata": false }, { - "$id": "7799", + "$id": "7801", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6999" + "$ref": "7001" }, "optional": true, "readOnly": false, @@ -102066,13 +102092,13 @@ "isHttpMetadata": false }, { - "$id": "7800", + "$id": "7802", "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": "7801", + "$id": "7803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102092,13 +102118,13 @@ "isHttpMetadata": false }, { - "$id": "7802", + "$id": "7804", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7803", + "$id": "7805", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -102118,18 +102144,18 @@ "isHttpMetadata": false }, { - "$id": "7804", + "$id": "7806", "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": "7805", + "$id": "7807", "kind": "union", "name": "RealtimeSessionCreateResponseMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7806", + "$id": "7808", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102158,19 +102184,19 @@ ] }, { - "$ref": "7762" + "$ref": "7764" }, { - "$ref": "7775" + "$ref": "7777" }, { - "$ref": "7782" + "$ref": "7784" }, { - "$ref": "7790" + "$ref": "7792" }, { - "$id": "7807", + "$id": "7809", "kind": "model", "name": "CreateUploadRequest", "namespace": "OpenAI", @@ -102179,13 +102205,13 @@ "decorators": [], "properties": [ { - "$id": "7808", + "$id": "7810", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to upload.", "type": { - "$id": "7809", + "$id": "7811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102205,7 +102231,7 @@ "isHttpMetadata": false }, { - "$id": "7810", + "$id": "7812", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -102227,13 +102253,13 @@ "isHttpMetadata": false }, { - "$id": "7811", + "$id": "7813", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The number of bytes in the file you are uploading.", "type": { - "$id": "7812", + "$id": "7814", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102253,13 +102279,13 @@ "isHttpMetadata": false }, { - "$id": "7813", + "$id": "7815", "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": "7814", + "$id": "7816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102281,7 +102307,7 @@ ] }, { - "$id": "7815", + "$id": "7817", "kind": "model", "name": "Upload", "namespace": "OpenAI", @@ -102291,13 +102317,13 @@ "decorators": [], "properties": [ { - "$id": "7816", + "$id": "7818", "kind": "property", "name": "id", "serializedName": "id", "doc": "The Upload unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7817", + "$id": "7819", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102317,18 +102343,18 @@ "isHttpMetadata": false }, { - "$id": "7818", + "$id": "7820", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Upload was created.", "type": { - "$id": "7819", + "$id": "7821", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7820", + "$id": "7822", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102351,13 +102377,13 @@ "isHttpMetadata": false }, { - "$id": "7821", + "$id": "7823", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be uploaded.", "type": { - "$id": "7822", + "$id": "7824", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102377,13 +102403,13 @@ "isHttpMetadata": false }, { - "$id": "7823", + "$id": "7825", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The intended number of bytes to be uploaded.", "type": { - "$id": "7824", + "$id": "7826", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102403,13 +102429,13 @@ "isHttpMetadata": false }, { - "$id": "7825", + "$id": "7827", "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": "7826", + "$id": "7828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102429,7 +102455,7 @@ "isHttpMetadata": false }, { - "$id": "7827", + "$id": "7829", "kind": "property", "name": "status", "serializedName": "status", @@ -102451,18 +102477,18 @@ "isHttpMetadata": false }, { - "$id": "7828", + "$id": "7830", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the Upload will expire.", "type": { - "$id": "7829", + "$id": "7831", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7830", + "$id": "7832", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102485,7 +102511,7 @@ "isHttpMetadata": false }, { - "$id": "7831", + "$id": "7833", "kind": "property", "name": "object", "serializedName": "object", @@ -102507,12 +102533,12 @@ "isHttpMetadata": false }, { - "$id": "7832", + "$id": "7834", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "7833", + "$id": "7835", "kind": "nullable", "type": { "$ref": "3445" @@ -102535,7 +102561,7 @@ ] }, { - "$id": "7834", + "$id": "7836", "kind": "model", "name": "AddUploadPartRequest", "namespace": "OpenAI", @@ -102544,13 +102570,13 @@ "decorators": [], "properties": [ { - "$id": "7835", + "$id": "7837", "kind": "property", "name": "data", "serializedName": "data", "doc": "The chunk of bytes for this Part.", "type": { - "$id": "7836", + "$id": "7838", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -102579,7 +102605,7 @@ ] }, { - "$id": "7837", + "$id": "7839", "kind": "model", "name": "UploadPart", "namespace": "OpenAI", @@ -102589,13 +102615,13 @@ "decorators": [], "properties": [ { - "$id": "7838", + "$id": "7840", "kind": "property", "name": "id", "serializedName": "id", "doc": "The upload Part unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7839", + "$id": "7841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102615,18 +102641,18 @@ "isHttpMetadata": false }, { - "$id": "7840", + "$id": "7842", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Part was created.", "type": { - "$id": "7841", + "$id": "7843", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7842", + "$id": "7844", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102649,13 +102675,13 @@ "isHttpMetadata": false }, { - "$id": "7843", + "$id": "7845", "kind": "property", "name": "upload_id", "serializedName": "upload_id", "doc": "The ID of the Upload object that this Part was added to.", "type": { - "$id": "7844", + "$id": "7846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102675,7 +102701,7 @@ "isHttpMetadata": false }, { - "$id": "7845", + "$id": "7847", "kind": "property", "name": "object", "serializedName": "object", @@ -102699,7 +102725,7 @@ ] }, { - "$id": "7846", + "$id": "7848", "kind": "model", "name": "CompleteUploadRequest", "namespace": "OpenAI", @@ -102708,7 +102734,7 @@ "decorators": [], "properties": [ { - "$id": "7847", + "$id": "7849", "kind": "property", "name": "part_ids", "serializedName": "part_ids", @@ -102730,13 +102756,13 @@ "isHttpMetadata": false }, { - "$id": "7848", + "$id": "7850", "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": "7849", + "$id": "7851", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102758,7 +102784,7 @@ ] }, { - "$id": "7850", + "$id": "7852", "kind": "model", "name": "BatchRequestInput", "namespace": "OpenAI", @@ -102769,12 +102795,12 @@ "decorators": [], "properties": [ { - "$id": "7851", + "$id": "7853", "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": "7852", + "$id": "7854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102790,7 +102816,7 @@ "isHttpMetadata": false }, { - "$id": "7853", + "$id": "7855", "kind": "property", "name": "method", "doc": "The HTTP method to be used for the request. Currently only `POST` is supported.", @@ -102807,12 +102833,12 @@ "isHttpMetadata": false }, { - "$id": "7854", + "$id": "7856", "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": "7855", + "$id": "7857", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -102830,7 +102856,7 @@ ] }, { - "$id": "7856", + "$id": "7858", "kind": "model", "name": "BatchRequestOutput", "namespace": "OpenAI", @@ -102841,11 +102867,11 @@ "decorators": [], "properties": [ { - "$id": "7857", + "$id": "7859", "kind": "property", "name": "id", "type": { - "$id": "7858", + "$id": "7860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102861,12 +102887,12 @@ "isHttpMetadata": false }, { - "$id": "7859", + "$id": "7861", "kind": "property", "name": "custom_id", "doc": "A developer-provided per-request id that will be used to match outputs to inputs.", "type": { - "$id": "7860", + "$id": "7862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102882,14 +102908,14 @@ "isHttpMetadata": false }, { - "$id": "7861", + "$id": "7863", "kind": "property", "name": "response", "type": { - "$id": "7862", + "$id": "7864", "kind": "nullable", "type": { - "$id": "7863", + "$id": "7865", "kind": "model", "name": "BatchRequestOutputResponse1", "namespace": "OpenAI", @@ -102898,12 +102924,12 @@ "decorators": [], "properties": [ { - "$id": "7864", + "$id": "7866", "kind": "property", "name": "status_code", "doc": "The HTTP status code of the response", "type": { - "$id": "7865", + "$id": "7867", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102919,12 +102945,12 @@ "isHttpMetadata": false }, { - "$id": "7866", + "$id": "7868", "kind": "property", "name": "request_id", "doc": "An unique identifier for the OpenAI API request. Please include this request ID when contacting support.", "type": { - "$id": "7867", + "$id": "7869", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102940,7 +102966,7 @@ "isHttpMetadata": false }, { - "$id": "7868", + "$id": "7870", "kind": "property", "name": "body", "doc": "The JSON body of the response", @@ -102970,15 +102996,15 @@ "isHttpMetadata": false }, { - "$id": "7869", + "$id": "7871", "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": "7870", + "$id": "7872", "kind": "nullable", "type": { - "$id": "7871", + "$id": "7873", "kind": "model", "name": "BatchRequestOutputError1", "namespace": "OpenAI", @@ -102987,12 +103013,12 @@ "decorators": [], "properties": [ { - "$id": "7872", + "$id": "7874", "kind": "property", "name": "code", "doc": "A machine-readable error code.", "type": { - "$id": "7873", + "$id": "7875", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103008,12 +103034,12 @@ "isHttpMetadata": false }, { - "$id": "7874", + "$id": "7876", "kind": "property", "name": "message", "doc": "A human-readable error message.", "type": { - "$id": "7875", + "$id": "7877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103044,13 +103070,13 @@ ] }, { - "$ref": "7863" + "$ref": "7865" }, { - "$ref": "7871" + "$ref": "7873" }, { - "$id": "7876", + "$id": "7878", "kind": "model", "name": "ChatCompletionFunctionChoice", "namespace": "OpenAI", @@ -103066,7 +103092,7 @@ "properties": [] }, { - "$id": "7877", + "$id": "7879", "kind": "model", "name": "ChatCompletionToolChoice", "namespace": "OpenAI", @@ -103082,7 +103108,7 @@ "properties": [] }, { - "$id": "7878", + "$id": "7880", "kind": "model", "name": "FineTuneChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -103091,7 +103117,7 @@ "decorators": [], "properties": [ { - "$id": "7879", + "$id": "7881", "kind": "property", "name": "weight", "doc": "Controls whether the assistant message is trained against (0 or 1)", @@ -103108,7 +103134,7 @@ "isHttpMetadata": false }, { - "$id": "7880", + "$id": "7882", "kind": "property", "name": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", @@ -103125,7 +103151,7 @@ "isHttpMetadata": false }, { - "$id": "7881", + "$id": "7883", "kind": "property", "name": "refusal", "doc": "The refusal message by the assistant.", @@ -103142,12 +103168,12 @@ "isHttpMetadata": false }, { - "$id": "7882", + "$id": "7884", "kind": "property", "name": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "7883", + "$id": "7885", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -103169,12 +103195,12 @@ "isHttpMetadata": false }, { - "$id": "7884", + "$id": "7886", "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": "7885", + "$id": "7887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103190,7 +103216,7 @@ "isHttpMetadata": false }, { - "$id": "7886", + "$id": "7888", "kind": "property", "name": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", @@ -103207,7 +103233,7 @@ "isHttpMetadata": false }, { - "$id": "7887", + "$id": "7889", "kind": "property", "name": "tool_calls", "type": { @@ -103223,7 +103249,7 @@ "isHttpMetadata": false }, { - "$id": "7888", + "$id": "7890", "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.", @@ -103242,7 +103268,7 @@ ] }, { - "$id": "7889", + "$id": "7891", "kind": "model", "name": "FineTuneChatRequestInput", "namespace": "OpenAI", @@ -103253,15 +103279,15 @@ "decorators": [], "properties": [ { - "$id": "7890", + "$id": "7892", "kind": "property", "name": "messages", "type": { - "$id": "7891", + "$id": "7893", "kind": "array", "name": "Array46", "valueType": { - "$id": "7892", + "$id": "7894", "kind": "union", "name": "FineTuneChatRequestInputMessage", "variantTypes": [ @@ -103272,7 +103298,7 @@ "$ref": "3058" }, { - "$ref": "7878" + "$ref": "7880" }, { "$ref": "3095" @@ -103297,7 +103323,7 @@ "isHttpMetadata": false }, { - "$id": "7893", + "$id": "7895", "kind": "property", "name": "tools", "doc": "A list of tools the model may generate JSON inputs for.", @@ -103314,16 +103340,16 @@ "isHttpMetadata": false }, { - "$id": "7894", + "$id": "7896", "kind": "property", "name": "parallel_tool_calls", "type": { - "$id": "7895", + "$id": "7897", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "7896", + "$id": "7898", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -103341,7 +103367,7 @@ "isHttpMetadata": false }, { - "$id": "7897", + "$id": "7899", "kind": "property", "name": "functions", "doc": "A list of functions the model may generate JSON inputs for.", @@ -103360,7 +103386,7 @@ ] }, { - "$id": "7898", + "$id": "7900", "kind": "model", "name": "FineTuningJobsPageToken", "namespace": "OpenAI", @@ -103370,11 +103396,11 @@ "decorators": [], "properties": [ { - "$id": "7899", + "$id": "7901", "kind": "property", "name": "limit", "type": { - "$id": "7900", + "$id": "7902", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103390,11 +103416,11 @@ "isHttpMetadata": false }, { - "$id": "7901", + "$id": "7903", "kind": "property", "name": "after", "type": { - "$id": "7902", + "$id": "7904", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103412,7 +103438,7 @@ ] }, { - "$id": "7903", + "$id": "7905", "kind": "model", "name": "MessageDeltaContent", "namespace": "OpenAI", @@ -103422,7 +103448,7 @@ "doc": "Represents a single piece of incremental content in an Assistants API streaming response.", "decorators": [], "discriminatorProperty": { - "$id": "7904", + "$id": "7906", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", @@ -103440,12 +103466,12 @@ }, "properties": [ { - "$ref": "7904" + "$ref": "7906" } ], "discriminatedSubtypes": { "image_file": { - "$id": "7905", + "$id": "7907", "kind": "model", "name": "MessageDeltaContentImageFileObject", "namespace": "OpenAI", @@ -103456,16 +103482,16 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "7903" + "$ref": "7905" }, "properties": [ { - "$id": "7906", + "$id": "7908", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7907", + "$id": "7909", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103481,12 +103507,12 @@ "isHttpMetadata": false }, { - "$id": "7908", + "$id": "7910", "kind": "property", "name": "type", "doc": "Always `image_file`.", "type": { - "$ref": "5939" + "$ref": "5941" }, "optional": false, "readOnly": false, @@ -103498,11 +103524,11 @@ "isHttpMetadata": false }, { - "$id": "7909", + "$id": "7911", "kind": "property", "name": "image_file", "type": { - "$id": "7910", + "$id": "7912", "kind": "model", "name": "MessageDeltaContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -103511,12 +103537,12 @@ "decorators": [], "properties": [ { - "$id": "7911", + "$id": "7913", "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": "7912", + "$id": "7914", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103532,7 +103558,7 @@ "isHttpMetadata": false }, { - "$id": "7913", + "$id": "7915", "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`.", @@ -103562,7 +103588,7 @@ ] }, "image_url": { - "$id": "7914", + "$id": "7916", "kind": "model", "name": "MessageDeltaContentImageUrlObject", "namespace": "OpenAI", @@ -103573,16 +103599,16 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "7903" + "$ref": "7905" }, "properties": [ { - "$id": "7915", + "$id": "7917", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7916", + "$id": "7918", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103598,12 +103624,12 @@ "isHttpMetadata": false }, { - "$id": "7917", + "$id": "7919", "kind": "property", "name": "type", "doc": "Always `image_url`.", "type": { - "$ref": "6001" + "$ref": "6003" }, "optional": false, "readOnly": false, @@ -103615,11 +103641,11 @@ "isHttpMetadata": false }, { - "$id": "7918", + "$id": "7920", "kind": "property", "name": "image_url", "type": { - "$id": "7919", + "$id": "7921", "kind": "model", "name": "MessageDeltaContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -103628,12 +103654,12 @@ "decorators": [], "properties": [ { - "$id": "7920", + "$id": "7922", "kind": "property", "name": "url", "doc": "The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.", "type": { - "$id": "7921", + "$id": "7923", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -103649,7 +103675,7 @@ "isHttpMetadata": false }, { - "$id": "7922", + "$id": "7924", "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`.", @@ -103679,7 +103705,7 @@ ] }, "text": { - "$id": "7923", + "$id": "7925", "kind": "model", "name": "MessageDeltaContentTextObject", "namespace": "OpenAI", @@ -103690,16 +103716,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7903" + "$ref": "7905" }, "properties": [ { - "$id": "7924", + "$id": "7926", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7925", + "$id": "7927", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103715,12 +103741,12 @@ "isHttpMetadata": false }, { - "$id": "7926", + "$id": "7928", "kind": "property", "name": "type", "doc": "Always `text`.", "type": { - "$ref": "5953" + "$ref": "5955" }, "optional": false, "readOnly": false, @@ -103732,11 +103758,11 @@ "isHttpMetadata": false }, { - "$id": "7927", + "$id": "7929", "kind": "property", "name": "text", "type": { - "$id": "7928", + "$id": "7930", "kind": "model", "name": "MessageDeltaContentTextObjectText", "namespace": "OpenAI", @@ -103745,12 +103771,12 @@ "decorators": [], "properties": [ { - "$id": "7929", + "$id": "7931", "kind": "property", "name": "value", "doc": "The data that makes up the text.", "type": { - "$id": "7930", + "$id": "7932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103766,15 +103792,15 @@ "isHttpMetadata": false }, { - "$id": "7931", + "$id": "7933", "kind": "property", "name": "annotations", "type": { - "$id": "7932", + "$id": "7934", "kind": "array", "name": "ArrayMessageDeltaTextContentAnnotation", "valueType": { - "$id": "7933", + "$id": "7935", "kind": "model", "name": "MessageDeltaTextContentAnnotation", "namespace": "OpenAI", @@ -103783,7 +103809,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7934", + "$id": "7936", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", @@ -103801,12 +103827,12 @@ }, "properties": [ { - "$ref": "7934" + "$ref": "7936" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "7935", + "$id": "7937", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -103817,16 +103843,16 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "7933" + "$ref": "7935" }, "properties": [ { - "$id": "7936", + "$id": "7938", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7937", + "$id": "7939", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103842,12 +103868,12 @@ "isHttpMetadata": false }, { - "$id": "7938", + "$id": "7940", "kind": "property", "name": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "5966" + "$ref": "5968" }, "optional": false, "readOnly": false, @@ -103859,12 +103885,12 @@ "isHttpMetadata": false }, { - "$id": "7939", + "$id": "7941", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7940", + "$id": "7942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103880,11 +103906,11 @@ "isHttpMetadata": false }, { - "$id": "7941", + "$id": "7943", "kind": "property", "name": "file_citation", "type": { - "$id": "7942", + "$id": "7944", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -103893,12 +103919,12 @@ "decorators": [], "properties": [ { - "$id": "7943", + "$id": "7945", "kind": "property", "name": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "7944", + "$id": "7946", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103914,12 +103940,12 @@ "isHttpMetadata": false }, { - "$id": "7945", + "$id": "7947", "kind": "property", "name": "quote", "doc": "The specific quote in the file.", "type": { - "$id": "7946", + "$id": "7948", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103946,11 +103972,11 @@ "isHttpMetadata": false }, { - "$id": "7947", + "$id": "7949", "kind": "property", "name": "start_index", "type": { - "$id": "7948", + "$id": "7950", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103966,11 +103992,11 @@ "isHttpMetadata": false }, { - "$id": "7949", + "$id": "7951", "kind": "property", "name": "end_index", "type": { - "$id": "7950", + "$id": "7952", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103988,7 +104014,7 @@ ] }, "file_path": { - "$id": "7951", + "$id": "7953", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -103999,16 +104025,16 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "7933" + "$ref": "7935" }, "properties": [ { - "$id": "7952", + "$id": "7954", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7953", + "$id": "7955", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104024,12 +104050,12 @@ "isHttpMetadata": false }, { - "$id": "7954", + "$id": "7956", "kind": "property", "name": "type", "doc": "Always `file_path`.", "type": { - "$ref": "5983" + "$ref": "5985" }, "optional": false, "readOnly": false, @@ -104041,12 +104067,12 @@ "isHttpMetadata": false }, { - "$id": "7955", + "$id": "7957", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7956", + "$id": "7958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104062,11 +104088,11 @@ "isHttpMetadata": false }, { - "$id": "7957", + "$id": "7959", "kind": "property", "name": "file_path", "type": { - "$id": "7958", + "$id": "7960", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -104075,12 +104101,12 @@ "decorators": [], "properties": [ { - "$id": "7959", + "$id": "7961", "kind": "property", "name": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "7960", + "$id": "7962", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104107,11 +104133,11 @@ "isHttpMetadata": false }, { - "$id": "7961", + "$id": "7963", "kind": "property", "name": "start_index", "type": { - "$id": "7962", + "$id": "7964", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104127,11 +104153,11 @@ "isHttpMetadata": false }, { - "$id": "7963", + "$id": "7965", "kind": "property", "name": "end_index", "type": { - "$id": "7964", + "$id": "7966", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104176,7 +104202,7 @@ ] }, "refusal": { - "$id": "7965", + "$id": "7967", "kind": "model", "name": "MessageDeltaContentRefusalObject", "namespace": "OpenAI", @@ -104186,16 +104212,16 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "7903" + "$ref": "7905" }, "properties": [ { - "$id": "7966", + "$id": "7968", "kind": "property", "name": "index", "doc": "The index of the refusal part in the message.", "type": { - "$id": "7967", + "$id": "7969", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104211,12 +104237,12 @@ "isHttpMetadata": false }, { - "$id": "7968", + "$id": "7970", "kind": "property", "name": "type", "doc": "Always `refusal`.", "type": { - "$ref": "5996" + "$ref": "5998" }, "optional": false, "readOnly": false, @@ -104228,11 +104254,11 @@ "isHttpMetadata": false }, { - "$id": "7969", + "$id": "7971", "kind": "property", "name": "refusal", "type": { - "$id": "7970", + "$id": "7972", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104252,43 +104278,43 @@ } }, { - "$ref": "7905" + "$ref": "7907" }, { - "$ref": "7910" + "$ref": "7912" }, { - "$ref": "7914" + "$ref": "7916" }, { - "$ref": "7919" + "$ref": "7921" }, { - "$ref": "7923" + "$ref": "7925" }, { - "$ref": "7928" + "$ref": "7930" }, { - "$ref": "7933" + "$ref": "7935" }, { - "$ref": "7935" + "$ref": "7937" }, { - "$ref": "7942" + "$ref": "7944" }, { - "$ref": "7951" + "$ref": "7953" }, { - "$ref": "7958" + "$ref": "7960" }, { - "$ref": "7965" + "$ref": "7967" }, { - "$id": "7971", + "$id": "7973", "kind": "model", "name": "MessageDeltaObject", "namespace": "OpenAI", @@ -104299,12 +104325,12 @@ "decorators": [], "properties": [ { - "$id": "7972", + "$id": "7974", "kind": "property", "name": "id", "doc": "The identifier of the message, which can be referenced in API endpoints.", "type": { - "$id": "7973", + "$id": "7975", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104320,7 +104346,7 @@ "isHttpMetadata": false }, { - "$id": "7974", + "$id": "7976", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.message.delta`.", @@ -104337,12 +104363,12 @@ "isHttpMetadata": false }, { - "$id": "7975", + "$id": "7977", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the Message.", "type": { - "$id": "7976", + "$id": "7978", "kind": "model", "name": "MessageDeltaObjectDelta", "namespace": "OpenAI", @@ -104351,7 +104377,7 @@ "decorators": [], "properties": [ { - "$id": "7977", + "$id": "7979", "kind": "property", "name": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", @@ -104368,16 +104394,16 @@ "isHttpMetadata": false }, { - "$id": "7978", + "$id": "7980", "kind": "property", "name": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$id": "7979", + "$id": "7981", "kind": "array", "name": "ArrayMessageDeltaContent", "valueType": { - "$ref": "7903" + "$ref": "7905" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -104405,10 +104431,10 @@ ] }, { - "$ref": "7976" + "$ref": "7978" }, { - "$id": "7980", + "$id": "7982", "kind": "model", "name": "RunStepDeltaObject", "namespace": "OpenAI", @@ -104419,12 +104445,12 @@ "decorators": [], "properties": [ { - "$id": "7981", + "$id": "7983", "kind": "property", "name": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "7982", + "$id": "7984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104440,7 +104466,7 @@ "isHttpMetadata": false }, { - "$id": "7983", + "$id": "7985", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.run.step.delta`.", @@ -104457,12 +104483,12 @@ "isHttpMetadata": false }, { - "$id": "7984", + "$id": "7986", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the run step.", "type": { - "$id": "7985", + "$id": "7987", "kind": "model", "name": "RunStepDeltaObjectDelta", "namespace": "OpenAI", @@ -104471,12 +104497,12 @@ "decorators": [], "properties": [ { - "$id": "7986", + "$id": "7988", "kind": "property", "name": "step_details", "doc": "The details of the run step.", "type": { - "$id": "7987", + "$id": "7989", "kind": "model", "name": "RunStepDeltaStepDetails", "namespace": "OpenAI", @@ -104484,7 +104510,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7988", + "$id": "7990", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -104502,12 +104528,12 @@ }, "properties": [ { - "$ref": "7988" + "$ref": "7990" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "7989", + "$id": "7991", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -104518,16 +104544,16 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "7987" + "$ref": "7989" }, "properties": [ { - "$id": "7990", + "$id": "7992", "kind": "property", "name": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "6445" + "$ref": "6447" }, "optional": false, "readOnly": false, @@ -104539,11 +104565,11 @@ "isHttpMetadata": false }, { - "$id": "7991", + "$id": "7993", "kind": "property", "name": "message_creation", "type": { - "$id": "7992", + "$id": "7994", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -104552,12 +104578,12 @@ "decorators": [], "properties": [ { - "$id": "7993", + "$id": "7995", "kind": "property", "name": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "7994", + "$id": "7996", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104586,7 +104612,7 @@ ] }, "tool_calls": { - "$id": "7995", + "$id": "7997", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -104597,16 +104623,16 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "7987" + "$ref": "7989" }, "properties": [ { - "$id": "7996", + "$id": "7998", "kind": "property", "name": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "6456" + "$ref": "6458" }, "optional": false, "readOnly": false, @@ -104618,16 +104644,16 @@ "isHttpMetadata": false }, { - "$id": "7997", + "$id": "7999", "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": "7998", + "$id": "8000", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "7999", + "$id": "8001", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -104636,7 +104662,7 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "8000", + "$id": "8002", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -104654,12 +104680,12 @@ }, "properties": [ { - "$ref": "8000" + "$ref": "8002" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "8001", + "$id": "8003", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -104670,16 +104696,16 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "7999" + "$ref": "8001" }, "properties": [ { - "$id": "8002", + "$id": "8004", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8003", + "$id": "8005", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104695,12 +104721,12 @@ "isHttpMetadata": false }, { - "$id": "8004", + "$id": "8006", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "8005", + "$id": "8007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104716,12 +104742,12 @@ "isHttpMetadata": false }, { - "$id": "8006", + "$id": "8008", "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": "6465" + "$ref": "6467" }, "optional": false, "readOnly": false, @@ -104733,12 +104759,12 @@ "isHttpMetadata": false }, { - "$id": "8007", + "$id": "8009", "kind": "property", "name": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "8008", + "$id": "8010", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -104747,12 +104773,12 @@ "decorators": [], "properties": [ { - "$id": "8009", + "$id": "8011", "kind": "property", "name": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "8010", + "$id": "8012", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104768,16 +104794,16 @@ "isHttpMetadata": false }, { - "$id": "8011", + "$id": "8013", "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": "8012", + "$id": "8014", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "8013", + "$id": "8015", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -104786,7 +104812,7 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "8014", + "$id": "8016", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -104804,12 +104830,12 @@ }, "properties": [ { - "$ref": "8014" + "$ref": "8016" } ], "discriminatedSubtypes": { "logs": { - "$id": "8015", + "$id": "8017", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -104820,16 +104846,16 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "8013" + "$ref": "8015" }, "properties": [ { - "$id": "8016", + "$id": "8018", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "8017", + "$id": "8019", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104845,12 +104871,12 @@ "isHttpMetadata": false }, { - "$id": "8018", + "$id": "8020", "kind": "property", "name": "type", "doc": "Always `logs`.", "type": { - "$ref": "6481" + "$ref": "6483" }, "optional": false, "readOnly": false, @@ -104862,12 +104888,12 @@ "isHttpMetadata": false }, { - "$id": "8019", + "$id": "8021", "kind": "property", "name": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "8020", + "$id": "8022", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104885,7 +104911,7 @@ ] }, "image": { - "$id": "8021", + "$id": "8023", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -104895,16 +104921,16 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "8013" + "$ref": "8015" }, "properties": [ { - "$id": "8022", + "$id": "8024", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "8023", + "$id": "8025", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104920,12 +104946,12 @@ "isHttpMetadata": false }, { - "$id": "8024", + "$id": "8026", "kind": "property", "name": "type", "doc": "Always `image`.", "type": { - "$ref": "6490" + "$ref": "6492" }, "optional": false, "readOnly": false, @@ -104937,11 +104963,11 @@ "isHttpMetadata": false }, { - "$id": "8025", + "$id": "8027", "kind": "property", "name": "image", "type": { - "$id": "8026", + "$id": "8028", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -104950,12 +104976,12 @@ "decorators": [], "properties": [ { - "$id": "8027", + "$id": "8029", "kind": "property", "name": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "8028", + "$id": "8030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105011,7 +105037,7 @@ ] }, "file_search": { - "$id": "8029", + "$id": "8031", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -105021,16 +105047,16 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "7999" + "$ref": "8001" }, "properties": [ { - "$id": "8030", + "$id": "8032", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8031", + "$id": "8033", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105046,12 +105072,12 @@ "isHttpMetadata": false }, { - "$id": "8032", + "$id": "8034", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "8033", + "$id": "8035", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105067,12 +105093,12 @@ "isHttpMetadata": false }, { - "$id": "8034", + "$id": "8036", "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": "6497" + "$ref": "6499" }, "optional": false, "readOnly": false, @@ -105084,12 +105110,12 @@ "isHttpMetadata": false }, { - "$id": "8035", + "$id": "8037", "kind": "property", "name": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "8036", + "$id": "8038", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -105098,11 +105124,11 @@ "decorators": [], "properties": [ { - "$id": "8037", + "$id": "8039", "kind": "property", "name": "ranking_options", "type": { - "$ref": "6501" + "$ref": "6503" }, "optional": true, "readOnly": false, @@ -105114,12 +105140,12 @@ "isHttpMetadata": false }, { - "$id": "8038", + "$id": "8040", "kind": "property", "name": "results", "doc": "The results of the file search.", "type": { - "$ref": "6506" + "$ref": "6508" }, "optional": true, "readOnly": true, @@ -105144,7 +105170,7 @@ ] }, "function": { - "$id": "8039", + "$id": "8041", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -105154,16 +105180,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7999" + "$ref": "8001" }, "properties": [ { - "$id": "8040", + "$id": "8042", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "8041", + "$id": "8043", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105179,12 +105205,12 @@ "isHttpMetadata": false }, { - "$id": "8042", + "$id": "8044", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "8043", + "$id": "8045", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105200,12 +105226,12 @@ "isHttpMetadata": false }, { - "$id": "8044", + "$id": "8046", "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": "6526" + "$ref": "6528" }, "optional": false, "readOnly": false, @@ -105217,12 +105243,12 @@ "isHttpMetadata": false }, { - "$id": "8045", + "$id": "8047", "kind": "property", "name": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "8046", + "$id": "8048", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -105231,12 +105257,12 @@ "decorators": [], "properties": [ { - "$id": "8047", + "$id": "8049", "kind": "property", "name": "name", "doc": "The name of the function.", "type": { - "$id": "8048", + "$id": "8050", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105252,12 +105278,12 @@ "isHttpMetadata": false }, { - "$id": "8049", + "$id": "8051", "kind": "property", "name": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "8050", + "$id": "8052", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105273,15 +105299,15 @@ "isHttpMetadata": false }, { - "$id": "8051", + "$id": "8053", "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": "8052", + "$id": "8054", "kind": "nullable", "type": { - "$id": "8053", + "$id": "8055", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105351,9 +105377,6 @@ } ] }, - { - "$ref": "7985" - }, { "$ref": "7987" }, @@ -105361,46 +105384,49 @@ "$ref": "7989" }, { - "$ref": "7992" + "$ref": "7991" }, { - "$ref": "7995" + "$ref": "7994" }, { - "$ref": "7999" + "$ref": "7997" }, { "$ref": "8001" }, { - "$ref": "8008" + "$ref": "8003" }, { - "$ref": "8013" + "$ref": "8010" }, { "$ref": "8015" }, { - "$ref": "8021" + "$ref": "8017" + }, + { + "$ref": "8023" }, { - "$ref": "8026" + "$ref": "8028" }, { - "$ref": "8029" + "$ref": "8031" }, { - "$ref": "8036" + "$ref": "8038" }, { - "$ref": "8039" + "$ref": "8041" }, { - "$ref": "8046" + "$ref": "8048" }, { - "$id": "8054", + "$id": "8056", "kind": "model", "name": "CreateThreadRequestToolResourcesFileSearchBase", "namespace": "OpenAI", @@ -105411,7 +105437,7 @@ "properties": [] }, { - "$id": "8055", + "$id": "8057", "kind": "model", "name": "AssistantCollectionOptions", "namespace": "OpenAI", @@ -105421,12 +105447,12 @@ "decorators": [], "properties": [ { - "$id": "8056", + "$id": "8058", "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": "8057", + "$id": "8059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105442,12 +105468,12 @@ "isHttpMetadata": true }, { - "$id": "8058", + "$id": "8060", "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": "8059", + "$id": "8061", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105463,12 +105489,12 @@ "isHttpMetadata": true }, { - "$id": "8060", + "$id": "8062", "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": "8061", + "$id": "8063", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105484,7 +105510,7 @@ "isHttpMetadata": true }, { - "$id": "8062", + "$id": "8064", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -105503,7 +105529,7 @@ ] }, { - "$id": "8063", + "$id": "8065", "kind": "model", "name": "MessageCollectionOptions", "namespace": "OpenAI", @@ -105513,12 +105539,12 @@ "decorators": [], "properties": [ { - "$id": "8064", + "$id": "8066", "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": "8065", + "$id": "8067", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105534,12 +105560,12 @@ "isHttpMetadata": true }, { - "$id": "8066", + "$id": "8068", "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": "8067", + "$id": "8069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105555,12 +105581,12 @@ "isHttpMetadata": true }, { - "$id": "8068", + "$id": "8070", "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": "8069", + "$id": "8071", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105576,7 +105602,7 @@ "isHttpMetadata": true }, { - "$id": "8070", + "$id": "8072", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -105595,7 +105621,7 @@ ] }, { - "$id": "8071", + "$id": "8073", "kind": "model", "name": "RunCollectionOptions", "namespace": "OpenAI", @@ -105605,12 +105631,12 @@ "decorators": [], "properties": [ { - "$id": "8072", + "$id": "8074", "kind": "property", "name": "afterId", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "8073", + "$id": "8075", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105626,12 +105652,12 @@ "isHttpMetadata": true }, { - "$id": "8074", + "$id": "8076", "kind": "property", "name": "beforeId", "doc": "A cursor for use in pagination. `before` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "8075", + "$id": "8077", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105647,12 +105673,12 @@ "isHttpMetadata": true }, { - "$id": "8076", + "$id": "8078", "kind": "property", "name": "pageSizeLimit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "8077", + "$id": "8079", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105668,7 +105694,7 @@ "isHttpMetadata": true }, { - "$id": "8078", + "$id": "8080", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -105687,7 +105713,7 @@ ] }, { - "$id": "8079", + "$id": "8081", "kind": "model", "name": "RunStepCollectionOptions", "namespace": "OpenAI", @@ -105697,12 +105723,12 @@ "decorators": [], "properties": [ { - "$id": "8080", + "$id": "8082", "kind": "property", "name": "afterId", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "8081", + "$id": "8083", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105718,12 +105744,12 @@ "isHttpMetadata": true }, { - "$id": "8082", + "$id": "8084", "kind": "property", "name": "beforeId", "doc": "A cursor for use in pagination. `before` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "8083", + "$id": "8085", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105739,12 +105765,12 @@ "isHttpMetadata": true }, { - "$id": "8084", + "$id": "8086", "kind": "property", "name": "pageSizeLimit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "8085", + "$id": "8087", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105760,7 +105786,7 @@ "isHttpMetadata": true }, { - "$id": "8086", + "$id": "8088", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -105779,7 +105805,7 @@ ] }, { - "$id": "8087", + "$id": "8089", "kind": "model", "name": "DotNetChatResponseFormat", "namespace": "OpenAI", @@ -105793,7 +105819,7 @@ } ], "discriminatorProperty": { - "$id": "8088", + "$id": "8090", "kind": "property", "name": "type", "type": { @@ -105810,12 +105836,12 @@ }, "properties": [ { - "$ref": "8088" + "$ref": "8090" } ], "discriminatedSubtypes": { "text": { - "$id": "8089", + "$id": "8091", "kind": "model", "name": "DotNetChatResponseFormatText", "namespace": "OpenAI", @@ -105830,11 +105856,11 @@ } ], "baseModel": { - "$ref": "8087" + "$ref": "8089" }, "properties": [ { - "$id": "8090", + "$id": "8092", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", @@ -105853,7 +105879,7 @@ ] }, "json_object": { - "$id": "8091", + "$id": "8093", "kind": "model", "name": "DotNetChatResponseFormatJsonObject", "namespace": "OpenAI", @@ -105868,11 +105894,11 @@ } ], "baseModel": { - "$ref": "8087" + "$ref": "8089" }, "properties": [ { - "$id": "8092", + "$id": "8094", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -105891,7 +105917,7 @@ ] }, "json_schema": { - "$id": "8093", + "$id": "8095", "kind": "model", "name": "DotNetChatResponseFormatJsonSchema", "namespace": "OpenAI", @@ -105906,11 +105932,11 @@ } ], "baseModel": { - "$ref": "8087" + "$ref": "8089" }, "properties": [ { - "$id": "8094", + "$id": "8096", "kind": "property", "name": "type", "type": { @@ -105926,11 +105952,11 @@ "isHttpMetadata": false }, { - "$id": "8095", + "$id": "8097", "kind": "property", "name": "json_schema", "type": { - "$id": "8096", + "$id": "8098", "kind": "model", "name": "DotNetChatResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -105939,11 +105965,11 @@ "decorators": [], "properties": [ { - "$id": "8097", + "$id": "8099", "kind": "property", "name": "description", "type": { - "$id": "8098", + "$id": "8100", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105959,11 +105985,11 @@ "isHttpMetadata": false }, { - "$id": "8099", + "$id": "8101", "kind": "property", "name": "name", "type": { - "$id": "8100", + "$id": "8102", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105979,11 +106005,11 @@ "isHttpMetadata": false }, { - "$id": "8101", + "$id": "8103", "kind": "property", "name": "schema", "type": { - "$id": "8102", + "$id": "8104", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -105999,14 +106025,14 @@ "isHttpMetadata": false }, { - "$id": "8103", + "$id": "8105", "kind": "property", "name": "strict", "type": { - "$id": "8104", + "$id": "8106", "kind": "nullable", "type": { - "$id": "8105", + "$id": "8107", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -106038,9 +106064,6 @@ } } }, - { - "$ref": "8089" - }, { "$ref": "8091" }, @@ -106048,10 +106071,13 @@ "$ref": "8093" }, { - "$ref": "8096" + "$ref": "8095" + }, + { + "$ref": "8098" }, { - "$id": "8106", + "$id": "8108", "kind": "model", "name": "DotNetAssistantResponseFormat", "namespace": "OpenAI", @@ -106060,7 +106086,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8107", + "$id": "8109", "kind": "property", "name": "type", "type": { @@ -106077,12 +106103,12 @@ }, "properties": [ { - "$ref": "8107" + "$ref": "8109" } ], "discriminatedSubtypes": { "text": { - "$id": "8108", + "$id": "8110", "kind": "model", "name": "DotNetAssistantResponseFormatText", "namespace": "OpenAI", @@ -106092,11 +106118,11 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "8106" + "$ref": "8108" }, "properties": [ { - "$id": "8109", + "$id": "8111", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", @@ -106115,7 +106141,7 @@ ] }, "json_object": { - "$id": "8110", + "$id": "8112", "kind": "model", "name": "DotNetAssistantResponseFormatJsonObject", "namespace": "OpenAI", @@ -106125,11 +106151,11 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "8106" + "$ref": "8108" }, "properties": [ { - "$id": "8111", + "$id": "8113", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -106148,7 +106174,7 @@ ] }, "json_schema": { - "$id": "8112", + "$id": "8114", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchema", "namespace": "OpenAI", @@ -106158,11 +106184,11 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "8106" + "$ref": "8108" }, "properties": [ { - "$id": "8113", + "$id": "8115", "kind": "property", "name": "type", "type": { @@ -106178,11 +106204,11 @@ "isHttpMetadata": false }, { - "$id": "8114", + "$id": "8116", "kind": "property", "name": "json_schema", "type": { - "$id": "8115", + "$id": "8117", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -106191,11 +106217,11 @@ "decorators": [], "properties": [ { - "$id": "8116", + "$id": "8118", "kind": "property", "name": "description", "type": { - "$id": "8117", + "$id": "8119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106211,11 +106237,11 @@ "isHttpMetadata": false }, { - "$id": "8118", + "$id": "8120", "kind": "property", "name": "name", "type": { - "$id": "8119", + "$id": "8121", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106231,11 +106257,11 @@ "isHttpMetadata": false }, { - "$id": "8120", + "$id": "8122", "kind": "property", "name": "schema", "type": { - "$id": "8121", + "$id": "8123", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -106251,14 +106277,14 @@ "isHttpMetadata": false }, { - "$id": "8122", + "$id": "8124", "kind": "property", "name": "strict", "type": { - "$id": "8123", + "$id": "8125", "kind": "nullable", "type": { - "$id": "8124", + "$id": "8126", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -106290,9 +106316,6 @@ } } }, - { - "$ref": "8108" - }, { "$ref": "8110" }, @@ -106300,10 +106323,13 @@ "$ref": "8112" }, { - "$ref": "8115" + "$ref": "8114" + }, + { + "$ref": "8117" }, { - "$id": "8125", + "$id": "8127", "kind": "model", "name": "DotNetAudioLogProbsProperties", "namespace": "OpenAI", @@ -106313,12 +106339,12 @@ "decorators": [], "properties": [ { - "$id": "8126", + "$id": "8128", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8127", + "$id": "8129", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106334,12 +106360,12 @@ "isHttpMetadata": false }, { - "$id": "8128", + "$id": "8130", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8129", + "$id": "8131", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -106355,7 +106381,7 @@ "isHttpMetadata": false }, { - "$id": "8130", + "$id": "8132", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", @@ -106374,7 +106400,7 @@ ] }, { - "$id": "8131", + "$id": "8133", "kind": "model", "name": "DotNetRealtimeLogProbsProperties", "namespace": "OpenAI", @@ -106384,12 +106410,12 @@ "decorators": [], "properties": [ { - "$id": "8132", + "$id": "8134", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8133", + "$id": "8135", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106405,12 +106431,12 @@ "isHttpMetadata": false }, { - "$id": "8134", + "$id": "8136", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8135", + "$id": "8137", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -106426,7 +106452,7 @@ "isHttpMetadata": false }, { - "$id": "8136", + "$id": "8138", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", @@ -106445,7 +106471,7 @@ ] }, { - "$id": "8137", + "$id": "8139", "kind": "model", "name": "DotNetCombinedJsonTranscriptionResponse", "namespace": "OpenAI", @@ -106455,7 +106481,7 @@ "decorators": [], "properties": [ { - "$id": "8138", + "$id": "8140", "kind": "property", "name": "task", "doc": "The task label.", @@ -106472,12 +106498,12 @@ "isHttpMetadata": false }, { - "$id": "8139", + "$id": "8141", "kind": "property", "name": "language", "doc": "The language of the input audio.", "type": { - "$id": "8140", + "$id": "8142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106493,17 +106519,17 @@ "isHttpMetadata": false }, { - "$id": "8141", + "$id": "8143", "kind": "property", "name": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "8142", + "$id": "8144", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "8143", + "$id": "8145", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -106522,12 +106548,12 @@ "isHttpMetadata": false }, { - "$id": "8144", + "$id": "8146", "kind": "property", "name": "text", "doc": "The transcribed text.", "type": { - "$id": "8145", + "$id": "8147", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106543,7 +106569,7 @@ "isHttpMetadata": false }, { - "$id": "8146", + "$id": "8148", "kind": "property", "name": "words", "doc": "Extracted words and their corresponding timestamps.", @@ -106560,7 +106586,7 @@ "isHttpMetadata": false }, { - "$id": "8147", + "$id": "8149", "kind": "property", "name": "segments", "doc": "Segments of the transcribed text and their corresponding details.", @@ -106577,11 +106603,11 @@ "isHttpMetadata": false }, { - "$id": "8148", + "$id": "8150", "kind": "property", "name": "logprobs", "type": { - "$ref": "7398" + "$ref": "7400" }, "optional": true, "readOnly": false, @@ -106595,7 +106621,7 @@ ] }, { - "$id": "8149", + "$id": "8151", "kind": "model", "name": "BatchCollectionOptions", "namespace": "OpenAI", @@ -106605,12 +106631,12 @@ "decorators": [], "properties": [ { - "$id": "8150", + "$id": "8152", "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": "8151", + "$id": "8153", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106626,12 +106652,12 @@ "isHttpMetadata": true }, { - "$id": "8152", + "$id": "8154", "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": "8153", + "$id": "8155", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106649,7 +106675,7 @@ ] }, { - "$id": "8154", + "$id": "8156", "kind": "model", "name": "ChatCompletionCollectionOptions", "namespace": "OpenAI", @@ -106664,12 +106690,12 @@ ], "properties": [ { - "$id": "8155", + "$id": "8157", "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": "8156", + "$id": "8158", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106685,12 +106711,12 @@ "isHttpMetadata": true }, { - "$id": "8157", + "$id": "8159", "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": "8158", + "$id": "8160", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106706,7 +106732,7 @@ "isHttpMetadata": true }, { - "$id": "8159", + "$id": "8161", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106723,7 +106749,7 @@ "isHttpMetadata": true }, { - "$id": "8160", + "$id": "8162", "kind": "property", "name": "metadata", "type": { @@ -106739,11 +106765,11 @@ "isHttpMetadata": true }, { - "$id": "8161", + "$id": "8163", "kind": "property", "name": "model", "type": { - "$id": "8162", + "$id": "8164", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106761,7 +106787,7 @@ ] }, { - "$id": "8163", + "$id": "8165", "kind": "model", "name": "ChatCompletionMessageCollectionOptions", "namespace": "OpenAI", @@ -106776,12 +106802,12 @@ ], "properties": [ { - "$id": "8164", + "$id": "8166", "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": "8165", + "$id": "8167", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106797,12 +106823,12 @@ "isHttpMetadata": true }, { - "$id": "8166", + "$id": "8168", "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": "8167", + "$id": "8169", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106818,7 +106844,7 @@ "isHttpMetadata": true }, { - "$id": "8168", + "$id": "8170", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106837,7 +106863,7 @@ ] }, { - "$id": "8169", + "$id": "8171", "kind": "model", "name": "ContainerCollectionOptions", "namespace": "OpenAI", @@ -106847,12 +106873,12 @@ "decorators": [], "properties": [ { - "$id": "8170", + "$id": "8172", "kind": "property", "name": "afterId", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "8171", + "$id": "8173", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106868,12 +106894,12 @@ "isHttpMetadata": true }, { - "$id": "8172", + "$id": "8174", "kind": "property", "name": "pageSizeLimit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "8173", + "$id": "8175", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106889,7 +106915,7 @@ "isHttpMetadata": true }, { - "$id": "8174", + "$id": "8176", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106908,7 +106934,7 @@ ] }, { - "$id": "8175", + "$id": "8177", "kind": "model", "name": "ContainerFileCollectionOptions", "namespace": "OpenAI", @@ -106918,12 +106944,12 @@ "decorators": [], "properties": [ { - "$id": "8176", + "$id": "8178", "kind": "property", "name": "afterId", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "8177", + "$id": "8179", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106939,12 +106965,12 @@ "isHttpMetadata": true }, { - "$id": "8178", + "$id": "8180", "kind": "property", "name": "pageSizeLimit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "8179", + "$id": "8181", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106960,7 +106986,7 @@ "isHttpMetadata": true }, { - "$id": "8180", + "$id": "8182", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106979,7 +107005,7 @@ ] }, { - "$id": "8181", + "$id": "8183", "kind": "model", "name": "ConversationItemCollectionOptions", "namespace": "OpenAI", @@ -106989,12 +107015,12 @@ "decorators": [], "properties": [ { - "$id": "8182", + "$id": "8184", "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": "8183", + "$id": "8185", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107010,12 +107036,12 @@ "isHttpMetadata": true }, { - "$id": "8184", + "$id": "8186", "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": "8185", + "$id": "8187", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107031,7 +107057,7 @@ "isHttpMetadata": true }, { - "$id": "8186", + "$id": "8188", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -107050,7 +107076,7 @@ ] }, { - "$id": "8187", + "$id": "8189", "kind": "model", "name": "ResponseItemCollectionOptions", "namespace": "OpenAI", @@ -107065,12 +107091,12 @@ ], "properties": [ { - "$id": "8188", + "$id": "8190", "kind": "property", "name": "afterId", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "8189", + "$id": "8191", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107086,12 +107112,12 @@ "isHttpMetadata": true }, { - "$id": "8190", + "$id": "8192", "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": "8191", + "$id": "8193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107107,12 +107133,12 @@ "isHttpMetadata": true }, { - "$id": "8192", + "$id": "8194", "kind": "property", "name": "pageSizeLimit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "8193", + "$id": "8195", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107128,7 +107154,7 @@ "isHttpMetadata": true }, { - "$id": "8194", + "$id": "8196", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -107147,7 +107173,7 @@ ] }, { - "$id": "8195", + "$id": "8197", "kind": "model", "name": "DotNetCustomToolCallApprovalPolicy", "namespace": "OpenAI", @@ -107162,7 +107188,7 @@ ], "properties": [ { - "$id": "8196", + "$id": "8198", "kind": "property", "name": "always", "doc": "A list of tools that always require approval.", @@ -107179,7 +107205,7 @@ "isHttpMetadata": false }, { - "$id": "8197", + "$id": "8199", "kind": "property", "name": "never", "doc": "A list of tools that never require approval.", @@ -107198,7 +107224,7 @@ ] }, { - "$id": "8198", + "$id": "8200", "kind": "model", "name": "DotNetToolCallApprovalPolicy", "namespace": "OpenAI", @@ -107213,7 +107239,7 @@ ], "properties": [ { - "$id": "8199", + "$id": "8201", "kind": "property", "name": "global_policy", "type": { @@ -107229,11 +107255,11 @@ "isHttpMetadata": false }, { - "$id": "8200", + "$id": "8202", "kind": "property", "name": "custom_policy", "type": { - "$ref": "8195" + "$ref": "8197" }, "optional": true, "readOnly": false, @@ -107247,7 +107273,7 @@ ] }, { - "$id": "8201", + "$id": "8203", "kind": "model", "name": "DotNetCodeInterpreterToolContainer", "namespace": "OpenAI", @@ -107262,11 +107288,11 @@ ], "properties": [ { - "$id": "8202", + "$id": "8204", "kind": "property", "name": "container_id", "type": { - "$id": "8203", + "$id": "8205", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107282,7 +107308,7 @@ "isHttpMetadata": false }, { - "$id": "8204", + "$id": "8206", "kind": "property", "name": "container", "type": { @@ -107300,7 +107326,7 @@ ] }, { - "$id": "8205", + "$id": "8207", "kind": "model", "name": "DotNetCombinedChunkingStrategyParam", "namespace": "OpenAI", @@ -107308,7 +107334,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8206", + "$id": "8208", "kind": "property", "name": "type", "type": { @@ -107325,12 +107351,12 @@ }, "properties": [ { - "$ref": "8206" + "$ref": "8208" } ], "discriminatedSubtypes": { "auto": { - "$id": "8207", + "$id": "8209", "kind": "model", "name": "DotNetCombinedAutoChunkingStrategyParam", "namespace": "OpenAI", @@ -107340,16 +107366,16 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "8205" + "$ref": "8207" }, "properties": [ { - "$id": "8208", + "$id": "8210", "kind": "property", "name": "type", "doc": "Always `auto`.", "type": { - "$id": "8209", + "$id": "8211", "kind": "enumvalue", "name": "auto", "value": "auto", @@ -107357,14 +107383,14 @@ "$ref": "1390" }, "enumType": { - "$id": "8210", + "$id": "8212", "kind": "enum", "decorators": [], "name": "DotNetCombinedChunkingStrategyParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "8211", + "$id": "8213", "kind": "string", "decorators": [], "doc": "A sequence of textual characters.", @@ -107373,42 +107399,42 @@ }, "values": [ { - "$id": "8212", + "$id": "8214", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "8211" + "$ref": "8213" }, "enumType": { - "$ref": "8210" + "$ref": "8212" } }, { - "$id": "8213", + "$id": "8215", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "8211" + "$ref": "8213" }, "enumType": { - "$ref": "8210" + "$ref": "8212" } }, { - "$id": "8214", + "$id": "8216", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "8211" + "$ref": "8213" }, "enumType": { - "$ref": "8210" + "$ref": "8212" } } ], @@ -107435,7 +107461,7 @@ ] }, "static": { - "$id": "8215", + "$id": "8217", "kind": "model", "name": "DotNetCombinedStaticChunkingStrategyParam", "namespace": "OpenAI", @@ -107445,16 +107471,16 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "8205" + "$ref": "8207" }, "properties": [ { - "$id": "8216", + "$id": "8218", "kind": "property", "name": "type", "doc": "Always `static`.", "type": { - "$id": "8217", + "$id": "8219", "kind": "enumvalue", "name": "static", "value": "static", @@ -107462,7 +107488,7 @@ "$ref": "1390" }, "enumType": { - "$ref": "8210" + "$ref": "8212" }, "decorators": [] }, @@ -107476,7 +107502,7 @@ "isHttpMetadata": false }, { - "$id": "8218", + "$id": "8220", "kind": "property", "name": "static", "type": { @@ -107494,7 +107520,7 @@ ] }, "other": { - "$id": "8219", + "$id": "8221", "kind": "model", "name": "DotNetCombinedOtherChunkingStrategyParam", "namespace": "OpenAI", @@ -107504,16 +107530,16 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "8205" + "$ref": "8207" }, "properties": [ { - "$id": "8220", + "$id": "8222", "kind": "property", "name": "type", "doc": "Always `other`.", "type": { - "$id": "8221", + "$id": "8223", "kind": "enumvalue", "name": "other", "value": "other", @@ -107521,7 +107547,7 @@ "$ref": "1390" }, "enumType": { - "$ref": "8210" + "$ref": "8212" }, "decorators": [] }, @@ -107539,16 +107565,16 @@ } }, { - "$ref": "8207" + "$ref": "8209" }, { - "$ref": "8215" + "$ref": "8217" }, { - "$ref": "8219" + "$ref": "8221" }, { - "$id": "8222", + "$id": "8224", "kind": "model", "name": "VectorStoreCollectionOptions", "namespace": "OpenAI", @@ -107558,12 +107584,12 @@ "decorators": [], "properties": [ { - "$id": "8223", + "$id": "8225", "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": "8224", + "$id": "8226", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107579,12 +107605,12 @@ "isHttpMetadata": true }, { - "$id": "8225", + "$id": "8227", "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": "8226", + "$id": "8228", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107600,12 +107626,12 @@ "isHttpMetadata": true }, { - "$id": "8227", + "$id": "8229", "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": "8228", + "$id": "8230", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107621,7 +107647,7 @@ "isHttpMetadata": true }, { - "$id": "8229", + "$id": "8231", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -107640,7 +107666,7 @@ ] }, { - "$id": "8230", + "$id": "8232", "kind": "model", "name": "VectorStoreFileCollectionOptions", "namespace": "OpenAI", @@ -107650,12 +107676,12 @@ "decorators": [], "properties": [ { - "$id": "8231", + "$id": "8233", "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": "8232", + "$id": "8234", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107671,12 +107697,12 @@ "isHttpMetadata": true }, { - "$id": "8233", + "$id": "8235", "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": "8234", + "$id": "8236", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107692,12 +107718,12 @@ "isHttpMetadata": true }, { - "$id": "8235", + "$id": "8237", "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": "8236", + "$id": "8238", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107713,7 +107739,7 @@ "isHttpMetadata": true }, { - "$id": "8237", + "$id": "8239", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -107730,7 +107756,7 @@ "isHttpMetadata": true }, { - "$id": "8238", + "$id": "8240", "kind": "property", "name": "filter", "type": { @@ -107748,7 +107774,7 @@ ] }, { - "$id": "8239", + "$id": "8241", "kind": "model", "name": "VideoCollectionOptions", "namespace": "OpenAI", @@ -107758,12 +107784,12 @@ "decorators": [], "properties": [ { - "$id": "8240", + "$id": "8242", "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": "8241", + "$id": "8243", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107779,12 +107805,12 @@ "isHttpMetadata": true }, { - "$id": "8242", + "$id": "8244", "kind": "property", "name": "pageSizeLimit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "8243", + "$id": "8245", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107800,7 +107826,7 @@ "isHttpMetadata": true }, { - "$id": "8244", + "$id": "8246", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -107821,20 +107847,20 @@ ], "clients": [ { - "$id": "8245", + "$id": "8247", "kind": "client", "name": "OpenAIClient", "namespace": "OpenAI", "methods": [], "parameters": [ { - "$id": "8246", + "$id": "8248", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8247", + "$id": "8249", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -107845,7 +107871,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8248", + "$id": "8250", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -107864,27 +107890,27 @@ "apiVersions": [], "children": [ { - "$id": "8249", + "$id": "8251", "kind": "client", "name": "Assistants", "namespace": "OpenAI", "methods": [ { - "$id": "8250", + "$id": "8252", "kind": "paging", "name": "GetAssistants", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of assistants.", "operation": { - "$id": "8251", + "$id": "8253", "name": "GetAssistants", "resourceName": "Assistants", "summary": "Returns a list of assistants.", "accessibility": "public", "parameters": [ { - "$id": "8252", + "$id": "8254", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -107900,7 +107926,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.accept" }, { - "$id": "8253", + "$id": "8255", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -107916,13 +107942,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.openAIBeta" }, { - "$id": "8254", + "$id": "8256", "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": "8255", + "$id": "8257", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -107937,7 +107963,7 @@ "readOnly": false }, { - "$id": "8256", + "$id": "8258", "kind": "query", "name": "order", "serializedName": "order", @@ -107954,13 +107980,13 @@ "readOnly": false }, { - "$id": "8257", + "$id": "8259", "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": "8258", + "$id": "8260", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107975,13 +108001,13 @@ "readOnly": false }, { - "$id": "8259", + "$id": "8261", "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": "8260", + "$id": "8262", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108022,7 +108048,7 @@ }, "parameters": [ { - "$id": "8261", + "$id": "8263", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108039,7 +108065,7 @@ "decorators": [] }, { - "$id": "8262", + "$id": "8264", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108056,13 +108082,13 @@ "decorators": [] }, { - "$id": "8263", + "$id": "8265", "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": "8264", + "$id": "8266", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108078,7 +108104,7 @@ "decorators": [] }, { - "$id": "8265", + "$id": "8267", "kind": "method", "name": "order", "serializedName": "order", @@ -108096,13 +108122,13 @@ "decorators": [] }, { - "$id": "8266", + "$id": "8268", "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": "8267", + "$id": "8269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108118,13 +108144,13 @@ "decorators": [] }, { - "$id": "8268", + "$id": "8270", "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": "8269", + "$id": "8271", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108158,7 +108184,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8257" + "$ref": "8259" }, "responseSegments": [ "last_id" @@ -108168,21 +108194,21 @@ } }, { - "$id": "8270", + "$id": "8272", "kind": "basic", "name": "createAssistant", "accessibility": "public", "apiVersions": [], "summary": "Create an assistant with a model and instructions.", "operation": { - "$id": "8271", + "$id": "8273", "name": "createAssistant", "resourceName": "Assistants", "summary": "Create an assistant with a model and instructions.", "accessibility": "public", "parameters": [ { - "$id": "8272", + "$id": "8274", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108198,7 +108224,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.accept" }, { - "$id": "8273", + "$id": "8275", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108214,7 +108240,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.openAIBeta" }, { - "$id": "8274", + "$id": "8276", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -108231,7 +108257,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.contentType" }, { - "$id": "8275", + "$id": "8277", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -108279,7 +108305,7 @@ }, "parameters": [ { - "$id": "8276", + "$id": "8278", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108296,7 +108322,7 @@ "decorators": [] }, { - "$id": "8277", + "$id": "8279", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108313,7 +108339,7 @@ "decorators": [] }, { - "$id": "8278", + "$id": "8280", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -108330,7 +108356,7 @@ "decorators": [] }, { - "$id": "8279", + "$id": "8281", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -108359,21 +108385,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant" }, { - "$id": "8280", + "$id": "8282", "kind": "basic", "name": "getAssistant", "accessibility": "public", "apiVersions": [], "summary": "Retrieves an assistant.", "operation": { - "$id": "8281", + "$id": "8283", "name": "getAssistant", "resourceName": "Assistants", "summary": "Retrieves an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8282", + "$id": "8284", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108389,7 +108415,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.accept" }, { - "$id": "8283", + "$id": "8285", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108405,13 +108431,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.openAIBeta" }, { - "$id": "8284", + "$id": "8286", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8285", + "$id": "8287", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108455,7 +108481,7 @@ }, "parameters": [ { - "$id": "8286", + "$id": "8288", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108472,7 +108498,7 @@ "decorators": [] }, { - "$id": "8287", + "$id": "8289", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108489,13 +108515,13 @@ "decorators": [] }, { - "$id": "8288", + "$id": "8290", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8289", + "$id": "8291", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108522,21 +108548,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant" }, { - "$id": "8290", + "$id": "8292", "kind": "basic", "name": "modifyAssistant", "accessibility": "public", "apiVersions": [], "summary": "Modifies an assistant.", "operation": { - "$id": "8291", + "$id": "8293", "name": "modifyAssistant", "resourceName": "Assistants", "summary": "Modifies an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8292", + "$id": "8294", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108552,7 +108578,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.accept" }, { - "$id": "8293", + "$id": "8295", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108568,13 +108594,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.openAIBeta" }, { - "$id": "8294", + "$id": "8296", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8295", + "$id": "8297", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108592,7 +108618,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.assistant_id" }, { - "$id": "8296", + "$id": "8298", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -108609,7 +108635,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.contentType" }, { - "$id": "8297", + "$id": "8299", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -108657,7 +108683,7 @@ }, "parameters": [ { - "$id": "8298", + "$id": "8300", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108674,7 +108700,7 @@ "decorators": [] }, { - "$id": "8299", + "$id": "8301", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108691,13 +108717,13 @@ "decorators": [] }, { - "$id": "8300", + "$id": "8302", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8301", + "$id": "8303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108713,7 +108739,7 @@ "decorators": [] }, { - "$id": "8302", + "$id": "8304", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -108730,7 +108756,7 @@ "decorators": [] }, { - "$id": "8303", + "$id": "8305", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -108759,21 +108785,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant" }, { - "$id": "8304", + "$id": "8306", "kind": "basic", "name": "deleteAssistant", "accessibility": "public", "apiVersions": [], "summary": "Delete an assistant.", "operation": { - "$id": "8305", + "$id": "8307", "name": "deleteAssistant", "resourceName": "Assistants", "summary": "Delete an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8306", + "$id": "8308", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108789,7 +108815,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.accept" }, { - "$id": "8307", + "$id": "8309", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108805,13 +108831,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.openAIBeta" }, { - "$id": "8308", + "$id": "8310", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8309", + "$id": "8311", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108855,7 +108881,7 @@ }, "parameters": [ { - "$id": "8310", + "$id": "8312", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108872,7 +108898,7 @@ "decorators": [] }, { - "$id": "8311", + "$id": "8313", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -108889,13 +108915,13 @@ "decorators": [] }, { - "$id": "8312", + "$id": "8314", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8313", + "$id": "8315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108924,13 +108950,13 @@ ], "parameters": [ { - "$id": "8314", + "$id": "8316", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8315", + "$id": "8317", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -108941,7 +108967,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8316", + "$id": "8318", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -108959,31 +108985,31 @@ "crossLanguageDefinitionId": "OpenAI.Assistants", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8317", + "$id": "8319", "kind": "client", "name": "Audio", "namespace": "OpenAI", "methods": [ { - "$id": "8318", + "$id": "8320", "kind": "basic", "name": "GenerateSpeech", "accessibility": "public", "apiVersions": [], "summary": "Generates audio from the input text.", "operation": { - "$id": "8319", + "$id": "8321", "name": "GenerateSpeech", "resourceName": "Audio", "summary": "Generates audio from the input text.", "accessibility": "public", "parameters": [ { - "$id": "8320", + "$id": "8322", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108999,7 +109025,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.accept" }, { - "$id": "8321", + "$id": "8323", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109016,7 +109042,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.contentType" }, { - "$id": "8322", + "$id": "8324", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -109041,7 +109067,7 @@ 200 ], "bodyType": { - "$id": "8323", + "$id": "8325", "kind": "bytes", "name": "bytes", "crossLanguageDefinitionId": "TypeSpec.bytes", @@ -109053,7 +109079,7 @@ "nameInResponse": "Transfer-Encoding", "doc": "chunked", "type": { - "$id": "8324", + "$id": "8326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109088,7 +109114,7 @@ }, "parameters": [ { - "$id": "8325", + "$id": "8327", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109105,7 +109131,7 @@ "decorators": [] }, { - "$id": "8326", + "$id": "8328", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -109122,7 +109148,7 @@ "decorators": [] }, { - "$id": "8327", + "$id": "8329", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109142,7 +109168,7 @@ ], "response": { "type": { - "$ref": "8323" + "$ref": "8325" } }, "isOverride": false, @@ -109151,21 +109177,21 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech" }, { - "$id": "8328", + "$id": "8330", "kind": "basic", "name": "TranscribeAudio", "accessibility": "public", "apiVersions": [], "summary": "Transcribes audio into the input language.", "operation": { - "$id": "8329", + "$id": "8331", "name": "TranscribeAudio", "resourceName": "Audio", "summary": "Transcribes audio into the input language.", "accessibility": "public", "parameters": [ { - "$id": "8330", + "$id": "8332", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109181,7 +109207,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.accept" }, { - "$id": "8331", + "$id": "8333", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109197,7 +109223,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.contentType" }, { - "$id": "8332", + "$id": "8334", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -109222,12 +109248,12 @@ 200 ], "bodyType": { - "$id": "8333", + "$id": "8335", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8334", + "$id": "8336", "kind": "union", "name": "", "variantTypes": [ @@ -109279,7 +109305,7 @@ }, "parameters": [ { - "$id": "8335", + "$id": "8337", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109296,7 +109322,7 @@ "decorators": [] }, { - "$id": "8336", + "$id": "8338", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109313,7 +109339,7 @@ "decorators": [] }, { - "$id": "8337", + "$id": "8339", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -109332,7 +109358,7 @@ ], "response": { "type": { - "$ref": "8333" + "$ref": "8335" } }, "isOverride": false, @@ -109341,21 +109367,21 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription" }, { - "$id": "8338", + "$id": "8340", "kind": "basic", "name": "TranslateAudio", "accessibility": "public", "apiVersions": [], "summary": "Translates audio into English..", "operation": { - "$id": "8339", + "$id": "8341", "name": "TranslateAudio", "resourceName": "Audio", "summary": "Translates audio into English..", "accessibility": "public", "parameters": [ { - "$id": "8340", + "$id": "8342", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109371,7 +109397,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.accept" }, { - "$id": "8341", + "$id": "8343", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109387,7 +109413,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.contentType" }, { - "$id": "8342", + "$id": "8344", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -109412,12 +109438,12 @@ 200 ], "bodyType": { - "$id": "8343", + "$id": "8345", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8344", + "$id": "8346", "kind": "union", "name": "", "variantTypes": [ @@ -109432,7 +109458,7 @@ "decorators": [] }, { - "$id": "8345", + "$id": "8347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109473,7 +109499,7 @@ }, "parameters": [ { - "$id": "8346", + "$id": "8348", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109490,7 +109516,7 @@ "decorators": [] }, { - "$id": "8347", + "$id": "8349", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109507,7 +109533,7 @@ "decorators": [] }, { - "$id": "8348", + "$id": "8350", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -109526,7 +109552,7 @@ ], "response": { "type": { - "$ref": "8343" + "$ref": "8345" } }, "isOverride": false, @@ -109537,13 +109563,13 @@ ], "parameters": [ { - "$id": "8349", + "$id": "8351", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8350", + "$id": "8352", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -109554,7 +109580,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8351", + "$id": "8353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -109572,31 +109598,31 @@ "crossLanguageDefinitionId": "OpenAI.Audio", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8352", + "$id": "8354", "kind": "client", "name": "Batches", "namespace": "OpenAI", "methods": [ { - "$id": "8353", + "$id": "8355", "kind": "basic", "name": "createBatch", "accessibility": "public", "apiVersions": [], "summary": "Creates and executes a batch from an uploaded file of requests", "operation": { - "$id": "8354", + "$id": "8356", "name": "createBatch", "resourceName": "Batches", "summary": "Creates and executes a batch from an uploaded file of requests", "accessibility": "public", "parameters": [ { - "$id": "8355", + "$id": "8357", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109612,7 +109638,7 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.accept" }, { - "$id": "8356", + "$id": "8358", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109629,7 +109655,7 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.contentType" }, { - "$id": "8357", + "$id": "8359", "kind": "body", "name": "createBatchRequest", "serializedName": "createBatchRequest", @@ -109677,7 +109703,7 @@ }, "parameters": [ { - "$id": "8358", + "$id": "8360", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109694,13 +109720,13 @@ "decorators": [] }, { - "$id": "8359", + "$id": "8361", "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": "8360", + "$id": "8362", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109716,7 +109742,7 @@ "decorators": [] }, { - "$id": "8361", + "$id": "8363", "kind": "method", "name": "endpoint", "serializedName": "endpoint", @@ -109734,7 +109760,7 @@ "decorators": [] }, { - "$id": "8362", + "$id": "8364", "kind": "method", "name": "completion_window", "serializedName": "completion_window", @@ -109752,7 +109778,7 @@ "decorators": [] }, { - "$id": "8363", + "$id": "8365", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -109770,7 +109796,7 @@ "decorators": [] }, { - "$id": "8364", + "$id": "8366", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109799,21 +109825,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch" }, { - "$id": "8365", + "$id": "8367", "kind": "paging", "name": "GetBatches", "accessibility": "public", "apiVersions": [], "summary": "List your organization's batches.", "operation": { - "$id": "8366", + "$id": "8368", "name": "GetBatches", "resourceName": "Batches", "summary": "List your organization's batches.", "accessibility": "public", "parameters": [ { - "$id": "8367", + "$id": "8369", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109829,13 +109855,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches.accept" }, { - "$id": "8368", + "$id": "8370", "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": "8369", + "$id": "8371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109850,13 +109876,13 @@ "readOnly": false }, { - "$id": "8370", + "$id": "8372", "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": "8371", + "$id": "8373", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109897,7 +109923,7 @@ }, "parameters": [ { - "$id": "8372", + "$id": "8374", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109914,13 +109940,13 @@ "decorators": [] }, { - "$id": "8373", + "$id": "8375", "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": "8374", + "$id": "8376", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109936,13 +109962,13 @@ "decorators": [] }, { - "$id": "8375", + "$id": "8377", "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": "8376", + "$id": "8378", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109976,7 +110002,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8368" + "$ref": "8370" }, "responseSegments": [ "last_id" @@ -109986,21 +110012,21 @@ } }, { - "$id": "8377", + "$id": "8379", "kind": "basic", "name": "GetBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a batch.", "operation": { - "$id": "8378", + "$id": "8380", "name": "GetBatch", "resourceName": "Batches", "summary": "Retrieves a batch.", "accessibility": "public", "parameters": [ { - "$id": "8379", + "$id": "8381", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110016,13 +110042,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch.accept" }, { - "$id": "8380", + "$id": "8382", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8381", + "$id": "8383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110066,7 +110092,7 @@ }, "parameters": [ { - "$id": "8382", + "$id": "8384", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110083,13 +110109,13 @@ "decorators": [] }, { - "$id": "8383", + "$id": "8385", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8384", + "$id": "8386", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110116,21 +110142,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch" }, { - "$id": "8385", + "$id": "8387", "kind": "basic", "name": "cancelBatch", "accessibility": "public", "apiVersions": [], "summary": "Cancels an in-progress batch.", "operation": { - "$id": "8386", + "$id": "8388", "name": "cancelBatch", "resourceName": "Batches", "summary": "Cancels an in-progress batch.", "accessibility": "public", "parameters": [ { - "$id": "8387", + "$id": "8389", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110146,13 +110172,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.cancelBatch.accept" }, { - "$id": "8388", + "$id": "8390", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8389", + "$id": "8391", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110196,7 +110222,7 @@ }, "parameters": [ { - "$id": "8390", + "$id": "8392", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110213,13 +110239,13 @@ "decorators": [] }, { - "$id": "8391", + "$id": "8393", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8392", + "$id": "8394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110248,13 +110274,13 @@ ], "parameters": [ { - "$id": "8393", + "$id": "8395", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8394", + "$id": "8396", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -110265,7 +110291,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8395", + "$id": "8397", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -110283,37 +110309,37 @@ "crossLanguageDefinitionId": "OpenAI.Batches", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8396", + "$id": "8398", "kind": "client", "name": "Chat", "namespace": "OpenAI", "methods": [ { - "$id": "8397", + "$id": "8399", "kind": "paging", "name": "listChatCompletions", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of chat completions.", "operation": { - "$id": "8398", + "$id": "8400", "name": "listChatCompletions", "resourceName": "Chat", "summary": "Returns a list of chat completions.", "accessibility": "public", "parameters": [ { - "$id": "8399", + "$id": "8401", "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": "8400", + "$id": "8402", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110328,13 +110354,13 @@ "readOnly": false }, { - "$id": "8401", + "$id": "8403", "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": "8402", + "$id": "8404", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110349,7 +110375,7 @@ "readOnly": false }, { - "$id": "8403", + "$id": "8405", "kind": "query", "name": "order", "serializedName": "order", @@ -110366,7 +110392,7 @@ "readOnly": false }, { - "$id": "8404", + "$id": "8406", "kind": "query", "name": "metadata", "serializedName": "metadata", @@ -110382,12 +110408,12 @@ "readOnly": false }, { - "$id": "8405", + "$id": "8407", "kind": "query", "name": "model", "serializedName": "model", "type": { - "$id": "8406", + "$id": "8408", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110402,7 +110428,7 @@ "readOnly": false }, { - "$id": "8407", + "$id": "8409", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110444,13 +110470,13 @@ }, "parameters": [ { - "$id": "8408", + "$id": "8410", "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": "8409", + "$id": "8411", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110466,13 +110492,13 @@ "decorators": [] }, { - "$id": "8410", + "$id": "8412", "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": "8411", + "$id": "8413", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110488,7 +110514,7 @@ "decorators": [] }, { - "$id": "8412", + "$id": "8414", "kind": "method", "name": "order", "serializedName": "order", @@ -110506,7 +110532,7 @@ "decorators": [] }, { - "$id": "8413", + "$id": "8415", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -110523,12 +110549,12 @@ "decorators": [] }, { - "$id": "8414", + "$id": "8416", "kind": "method", "name": "model", "serializedName": "model", "type": { - "$id": "8415", + "$id": "8417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110544,7 +110570,7 @@ "decorators": [] }, { - "$id": "8416", + "$id": "8418", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110579,7 +110605,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8399" + "$ref": "8401" }, "responseSegments": [ "last_id" @@ -110589,21 +110615,21 @@ } }, { - "$id": "8417", + "$id": "8419", "kind": "basic", "name": "CompleteChat", "accessibility": "public", "apiVersions": [], "summary": "Creates a model response for the given chat conversation.", "operation": { - "$id": "8418", + "$id": "8420", "name": "CompleteChat", "resourceName": "Chat", "summary": "Creates a model response for the given chat conversation.", "accessibility": "public", "parameters": [ { - "$id": "8419", + "$id": "8421", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110619,7 +110645,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.accept" }, { - "$id": "8420", + "$id": "8422", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110636,7 +110662,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.contentType" }, { - "$id": "8421", + "$id": "8423", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -110661,7 +110687,7 @@ 200 ], "bodyType": { - "$id": "8422", + "$id": "8424", "kind": "union", "name": "", "variantTypes": [ @@ -110705,7 +110731,7 @@ }, "parameters": [ { - "$id": "8423", + "$id": "8425", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110722,7 +110748,7 @@ "decorators": [] }, { - "$id": "8424", + "$id": "8426", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -110739,7 +110765,7 @@ "decorators": [] }, { - "$id": "8425", + "$id": "8427", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110759,7 +110785,7 @@ ], "response": { "type": { - "$ref": "8422" + "$ref": "8424" } }, "isOverride": false, @@ -110768,27 +110794,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion" }, { - "$id": "8426", + "$id": "8428", "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": "8427", + "$id": "8429", "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": "8428", + "$id": "8430", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8429", + "$id": "8431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110806,7 +110832,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion.completion_id" }, { - "$id": "8430", + "$id": "8432", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110848,13 +110874,13 @@ }, "parameters": [ { - "$id": "8431", + "$id": "8433", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8432", + "$id": "8434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110870,7 +110896,7 @@ "decorators": [] }, { - "$id": "8433", + "$id": "8435", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110898,27 +110924,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion" }, { - "$id": "8434", + "$id": "8436", "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": "8435", + "$id": "8437", "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": "8436", + "$id": "8438", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8437", + "$id": "8439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110936,7 +110962,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.completion_id" }, { - "$id": "8438", + "$id": "8440", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110953,7 +110979,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.contentType" }, { - "$id": "8439", + "$id": "8441", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110969,7 +110995,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.accept" }, { - "$id": "8440", + "$id": "8442", "kind": "body", "name": "updateChatCompletionRequest", "serializedName": "updateChatCompletionRequest", @@ -111017,13 +111043,13 @@ }, "parameters": [ { - "$id": "8441", + "$id": "8443", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8442", + "$id": "8444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111039,7 +111065,7 @@ "decorators": [] }, { - "$id": "8443", + "$id": "8445", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -111057,7 +111083,7 @@ "decorators": [] }, { - "$id": "8444", + "$id": "8446", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -111075,7 +111101,7 @@ "decorators": [] }, { - "$id": "8445", + "$id": "8447", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111103,27 +111129,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion" }, { - "$id": "8446", + "$id": "8448", "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": "8447", + "$id": "8449", "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": "8448", + "$id": "8450", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8449", + "$id": "8451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111141,7 +111167,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion.completion_id" }, { - "$id": "8450", + "$id": "8452", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111183,13 +111209,13 @@ }, "parameters": [ { - "$id": "8451", + "$id": "8453", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8452", + "$id": "8454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111205,7 +111231,7 @@ "decorators": [] }, { - "$id": "8453", + "$id": "8455", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111233,27 +111259,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion" }, { - "$id": "8454", + "$id": "8456", "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": "8455", + "$id": "8457", "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": "8456", + "$id": "8458", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8457", + "$id": "8459", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111271,13 +111297,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletionMessages.completion_id" }, { - "$id": "8458", + "$id": "8460", "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": "8459", + "$id": "8461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111292,13 +111318,13 @@ "readOnly": false }, { - "$id": "8460", + "$id": "8462", "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": "8461", + "$id": "8463", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111313,7 +111339,7 @@ "readOnly": false }, { - "$id": "8462", + "$id": "8464", "kind": "query", "name": "order", "serializedName": "order", @@ -111330,7 +111356,7 @@ "readOnly": false }, { - "$id": "8463", + "$id": "8465", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111372,13 +111398,13 @@ }, "parameters": [ { - "$id": "8464", + "$id": "8466", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8465", + "$id": "8467", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111394,13 +111420,13 @@ "decorators": [] }, { - "$id": "8466", + "$id": "8468", "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": "8467", + "$id": "8469", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111416,13 +111442,13 @@ "decorators": [] }, { - "$id": "8468", + "$id": "8470", "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": "8469", + "$id": "8471", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111438,7 +111464,7 @@ "decorators": [] }, { - "$id": "8470", + "$id": "8472", "kind": "method", "name": "order", "serializedName": "order", @@ -111456,7 +111482,7 @@ "decorators": [] }, { - "$id": "8471", + "$id": "8473", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111491,7 +111517,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8458" + "$ref": "8460" }, "responseSegments": [ "last_id" @@ -111503,13 +111529,13 @@ ], "parameters": [ { - "$id": "8472", + "$id": "8474", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8473", + "$id": "8475", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -111520,7 +111546,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8474", + "$id": "8476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -111538,35 +111564,35 @@ "crossLanguageDefinitionId": "OpenAI.Chat", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8475", + "$id": "8477", "kind": "client", "name": "Containers", "namespace": "OpenAI", "methods": [ { - "$id": "8476", + "$id": "8478", "kind": "paging", "name": "listContainers", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8477", + "$id": "8479", "name": "listContainers", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8478", + "$id": "8480", "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": "8479", + "$id": "8481", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111581,7 +111607,7 @@ "readOnly": false }, { - "$id": "8480", + "$id": "8482", "kind": "query", "name": "order", "serializedName": "order", @@ -111598,13 +111624,13 @@ "readOnly": false }, { - "$id": "8481", + "$id": "8483", "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": "8482", + "$id": "8484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111619,7 +111645,7 @@ "readOnly": false }, { - "$id": "8483", + "$id": "8485", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111661,13 +111687,13 @@ }, "parameters": [ { - "$id": "8484", + "$id": "8486", "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": "8485", + "$id": "8487", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111683,7 +111709,7 @@ "decorators": [] }, { - "$id": "8486", + "$id": "8488", "kind": "method", "name": "order", "serializedName": "order", @@ -111701,13 +111727,13 @@ "decorators": [] }, { - "$id": "8487", + "$id": "8489", "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": "8488", + "$id": "8490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111723,7 +111749,7 @@ "decorators": [] }, { - "$id": "8489", + "$id": "8491", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111758,7 +111784,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8481" + "$ref": "8483" }, "responseSegments": [ "last_id" @@ -111768,19 +111794,19 @@ } }, { - "$id": "8490", + "$id": "8492", "kind": "basic", "name": "createContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8491", + "$id": "8493", "name": "createContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8492", + "$id": "8494", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -111797,7 +111823,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.contentType" }, { - "$id": "8493", + "$id": "8495", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111813,7 +111839,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.accept" }, { - "$id": "8494", + "$id": "8496", "kind": "body", "name": "body", "serializedName": "body", @@ -111861,7 +111887,7 @@ }, "parameters": [ { - "$id": "8495", + "$id": "8497", "kind": "method", "name": "body", "serializedName": "body", @@ -111878,7 +111904,7 @@ "decorators": [] }, { - "$id": "8496", + "$id": "8498", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -111896,7 +111922,7 @@ "decorators": [] }, { - "$id": "8497", + "$id": "8499", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111924,24 +111950,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer" }, { - "$id": "8498", + "$id": "8500", "kind": "basic", "name": "GetContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8499", + "$id": "8501", "name": "GetContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8500", + "$id": "8502", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8501", + "$id": "8503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111959,7 +111985,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer.container_id" }, { - "$id": "8502", + "$id": "8504", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112001,12 +112027,12 @@ }, "parameters": [ { - "$id": "8503", + "$id": "8505", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8504", + "$id": "8506", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112022,7 +112048,7 @@ "decorators": [] }, { - "$id": "8505", + "$id": "8507", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112050,24 +112076,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer" }, { - "$id": "8506", + "$id": "8508", "kind": "basic", "name": "deleteContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8507", + "$id": "8509", "name": "deleteContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8508", + "$id": "8510", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8509", + "$id": "8511", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112085,7 +112111,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer.container_id" }, { - "$id": "8510", + "$id": "8512", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112127,12 +112153,12 @@ }, "parameters": [ { - "$id": "8511", + "$id": "8513", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8512", + "$id": "8514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112148,7 +112174,7 @@ "decorators": [] }, { - "$id": "8513", + "$id": "8515", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112176,24 +112202,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer" }, { - "$id": "8514", + "$id": "8516", "kind": "basic", "name": "createContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8515", + "$id": "8517", "name": "createContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8516", + "$id": "8518", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8517", + "$id": "8519", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112211,7 +112237,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.container_id" }, { - "$id": "8518", + "$id": "8520", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -112227,7 +112253,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.contentType" }, { - "$id": "8519", + "$id": "8521", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112243,7 +112269,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.accept" }, { - "$id": "8520", + "$id": "8522", "kind": "body", "name": "body", "serializedName": "body", @@ -112291,12 +112317,12 @@ }, "parameters": [ { - "$id": "8521", + "$id": "8523", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8522", + "$id": "8524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112312,7 +112338,7 @@ "decorators": [] }, { - "$id": "8523", + "$id": "8525", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -112329,7 +112355,7 @@ "decorators": [] }, { - "$id": "8524", + "$id": "8526", "kind": "method", "name": "body", "serializedName": "body", @@ -112346,7 +112372,7 @@ "decorators": [] }, { - "$id": "8525", + "$id": "8527", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112374,24 +112400,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile" }, { - "$id": "8526", + "$id": "8528", "kind": "paging", "name": "listContainerFiles", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8527", + "$id": "8529", "name": "listContainerFiles", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8528", + "$id": "8530", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8529", + "$id": "8531", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112409,13 +112435,13 @@ "crossLanguageDefinitionId": "OpenAI.Containers.listContainerFiles.container_id" }, { - "$id": "8530", + "$id": "8532", "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": "8531", + "$id": "8533", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112430,7 +112456,7 @@ "readOnly": false }, { - "$id": "8532", + "$id": "8534", "kind": "query", "name": "order", "serializedName": "order", @@ -112447,13 +112473,13 @@ "readOnly": false }, { - "$id": "8533", + "$id": "8535", "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": "8534", + "$id": "8536", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112468,7 +112494,7 @@ "readOnly": false }, { - "$id": "8535", + "$id": "8537", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112510,12 +112536,12 @@ }, "parameters": [ { - "$id": "8536", + "$id": "8538", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8537", + "$id": "8539", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112531,13 +112557,13 @@ "decorators": [] }, { - "$id": "8538", + "$id": "8540", "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": "8539", + "$id": "8541", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112553,7 +112579,7 @@ "decorators": [] }, { - "$id": "8540", + "$id": "8542", "kind": "method", "name": "order", "serializedName": "order", @@ -112571,13 +112597,13 @@ "decorators": [] }, { - "$id": "8541", + "$id": "8543", "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": "8542", + "$id": "8544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112593,7 +112619,7 @@ "decorators": [] }, { - "$id": "8543", + "$id": "8545", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112628,7 +112654,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8533" + "$ref": "8535" }, "responseSegments": [ "last_id" @@ -112638,24 +112664,24 @@ } }, { - "$id": "8544", + "$id": "8546", "kind": "basic", "name": "GetContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8545", + "$id": "8547", "name": "GetContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8546", + "$id": "8548", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8547", + "$id": "8549", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112673,12 +112699,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.container_id" }, { - "$id": "8548", + "$id": "8550", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8549", + "$id": "8551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112696,7 +112722,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.file_id" }, { - "$id": "8550", + "$id": "8552", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112738,12 +112764,12 @@ }, "parameters": [ { - "$id": "8551", + "$id": "8553", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8552", + "$id": "8554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112759,12 +112785,12 @@ "decorators": [] }, { - "$id": "8553", + "$id": "8555", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8554", + "$id": "8556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112780,7 +112806,7 @@ "decorators": [] }, { - "$id": "8555", + "$id": "8557", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112808,24 +112834,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile" }, { - "$id": "8556", + "$id": "8558", "kind": "basic", "name": "deleteContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8557", + "$id": "8559", "name": "deleteContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8558", + "$id": "8560", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8559", + "$id": "8561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112843,12 +112869,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.container_id" }, { - "$id": "8560", + "$id": "8562", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8561", + "$id": "8563", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112866,7 +112892,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.file_id" }, { - "$id": "8562", + "$id": "8564", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112908,12 +112934,12 @@ }, "parameters": [ { - "$id": "8563", + "$id": "8565", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8564", + "$id": "8566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112929,12 +112955,12 @@ "decorators": [] }, { - "$id": "8565", + "$id": "8567", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8566", + "$id": "8568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112950,7 +112976,7 @@ "decorators": [] }, { - "$id": "8567", + "$id": "8569", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112978,24 +113004,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile" }, { - "$id": "8568", + "$id": "8570", "kind": "basic", "name": "DownloadContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8569", + "$id": "8571", "name": "DownloadContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8570", + "$id": "8572", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8571", + "$id": "8573", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113013,12 +113039,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.container_id" }, { - "$id": "8572", + "$id": "8574", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8573", + "$id": "8575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113036,7 +113062,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.file_id" }, { - "$id": "8574", + "$id": "8576", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113058,7 +113084,7 @@ 200 ], "bodyType": { - "$id": "8575", + "$id": "8577", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -113083,12 +113109,12 @@ }, "parameters": [ { - "$id": "8576", + "$id": "8578", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8577", + "$id": "8579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113104,12 +113130,12 @@ "decorators": [] }, { - "$id": "8578", + "$id": "8580", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8579", + "$id": "8581", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113125,7 +113151,7 @@ "decorators": [] }, { - "$id": "8580", + "$id": "8582", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113144,7 +113170,7 @@ ], "response": { "type": { - "$ref": "8575" + "$ref": "8577" } }, "isOverride": false, @@ -113155,13 +113181,13 @@ ], "parameters": [ { - "$id": "8581", + "$id": "8583", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8582", + "$id": "8584", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -113172,7 +113198,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8583", + "$id": "8585", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -113190,31 +113216,31 @@ "crossLanguageDefinitionId": "OpenAI.Containers", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8584", + "$id": "8586", "kind": "client", "name": "Embeddings", "namespace": "OpenAI", "methods": [ { - "$id": "8585", + "$id": "8587", "kind": "basic", "name": "GenerateEmbeddings", "accessibility": "public", "apiVersions": [], "summary": "Creates an embedding vector representing the input text.", "operation": { - "$id": "8586", + "$id": "8588", "name": "GenerateEmbeddings", "resourceName": "Embeddings", "summary": "Creates an embedding vector representing the input text.", "accessibility": "public", "parameters": [ { - "$id": "8587", + "$id": "8589", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113230,7 +113256,7 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.accept" }, { - "$id": "8588", + "$id": "8590", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -113247,7 +113273,7 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.contentType" }, { - "$id": "8589", + "$id": "8591", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -113295,7 +113321,7 @@ }, "parameters": [ { - "$id": "8590", + "$id": "8592", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113312,7 +113338,7 @@ "decorators": [] }, { - "$id": "8591", + "$id": "8593", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -113329,7 +113355,7 @@ "decorators": [] }, { - "$id": "8592", + "$id": "8594", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -113360,13 +113386,13 @@ ], "parameters": [ { - "$id": "8593", + "$id": "8595", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8594", + "$id": "8596", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -113377,7 +113403,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8595", + "$id": "8597", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -113395,31 +113421,31 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8596", + "$id": "8598", "kind": "client", "name": "Files", "namespace": "OpenAI", "methods": [ { - "$id": "8597", + "$id": "8599", "kind": "basic", "name": "GetFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of files that belong to the user's organization.", "operation": { - "$id": "8598", + "$id": "8600", "name": "GetFiles", "resourceName": "Files", "summary": "Returns a list of files that belong to the user's organization.", "accessibility": "public", "parameters": [ { - "$id": "8599", + "$id": "8601", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113435,13 +113461,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles.accept" }, { - "$id": "8600", + "$id": "8602", "kind": "query", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8601", + "$id": "8603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113482,7 +113508,7 @@ }, "parameters": [ { - "$id": "8602", + "$id": "8604", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113499,13 +113525,13 @@ "decorators": [] }, { - "$id": "8603", + "$id": "8605", "kind": "method", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8604", + "$id": "8606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113532,21 +113558,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles" }, { - "$id": "8605", + "$id": "8607", "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": "8606", + "$id": "8608", "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": "8607", + "$id": "8609", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113562,7 +113588,7 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.accept" }, { - "$id": "8608", + "$id": "8610", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -113578,7 +113604,7 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.contentType" }, { - "$id": "8609", + "$id": "8611", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -113626,7 +113652,7 @@ }, "parameters": [ { - "$id": "8610", + "$id": "8612", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113643,7 +113669,7 @@ "decorators": [] }, { - "$id": "8611", + "$id": "8613", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -113660,7 +113686,7 @@ "decorators": [] }, { - "$id": "8612", + "$id": "8614", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -113688,21 +113714,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile" }, { - "$id": "8613", + "$id": "8615", "kind": "basic", "name": "deleteFile", "accessibility": "public", "apiVersions": [], "summary": "Delete a file", "operation": { - "$id": "8614", + "$id": "8616", "name": "deleteFile", "resourceName": "Files", "summary": "Delete a file", "accessibility": "public", "parameters": [ { - "$id": "8615", + "$id": "8617", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113718,13 +113744,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile.accept" }, { - "$id": "8616", + "$id": "8618", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8617", + "$id": "8619", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113768,7 +113794,7 @@ }, "parameters": [ { - "$id": "8618", + "$id": "8620", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113785,13 +113811,13 @@ "decorators": [] }, { - "$id": "8619", + "$id": "8621", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8620", + "$id": "8622", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113818,21 +113844,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile" }, { - "$id": "8621", + "$id": "8623", "kind": "basic", "name": "GetFile", "accessibility": "public", "apiVersions": [], "summary": "Returns information about a specific file.", "operation": { - "$id": "8622", + "$id": "8624", "name": "GetFile", "resourceName": "Files", "summary": "Returns information about a specific file.", "accessibility": "public", "parameters": [ { - "$id": "8623", + "$id": "8625", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113848,13 +113874,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile.accept" }, { - "$id": "8624", + "$id": "8626", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8625", + "$id": "8627", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113898,7 +113924,7 @@ }, "parameters": [ { - "$id": "8626", + "$id": "8628", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113915,13 +113941,13 @@ "decorators": [] }, { - "$id": "8627", + "$id": "8629", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8628", + "$id": "8630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113948,21 +113974,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile" }, { - "$id": "8629", + "$id": "8631", "kind": "basic", "name": "downloadFile", "accessibility": "public", "apiVersions": [], "summary": "Returns the contents of the specified file.", "operation": { - "$id": "8630", + "$id": "8632", "name": "downloadFile", "resourceName": "Files", "summary": "Returns the contents of the specified file.", "accessibility": "public", "parameters": [ { - "$id": "8631", + "$id": "8633", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113978,13 +114004,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.downloadFile.accept" }, { - "$id": "8632", + "$id": "8634", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8633", + "$id": "8635", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114008,7 +114034,7 @@ 200 ], "bodyType": { - "$id": "8634", + "$id": "8636", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -114033,7 +114059,7 @@ }, "parameters": [ { - "$id": "8635", + "$id": "8637", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114050,13 +114076,13 @@ "decorators": [] }, { - "$id": "8636", + "$id": "8638", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8637", + "$id": "8639", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114074,7 +114100,7 @@ ], "response": { "type": { - "$ref": "8634" + "$ref": "8636" } }, "isOverride": false, @@ -114085,13 +114111,13 @@ ], "parameters": [ { - "$id": "8638", + "$id": "8640", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8639", + "$id": "8641", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -114102,7 +114128,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8640", + "$id": "8642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -114120,37 +114146,37 @@ "crossLanguageDefinitionId": "OpenAI.Files", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8641", + "$id": "8643", "kind": "client", "name": "FineTuning", "namespace": "OpenAI", "methods": [ { - "$id": "8642", + "$id": "8644", "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": "8643", + "$id": "8645", "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": "8644", + "$id": "8646", "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": "8645", + "$id": "8647", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114168,13 +114194,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions.fine_tuned_model_checkpoint" }, { - "$id": "8646", + "$id": "8648", "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": "8647", + "$id": "8649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114189,13 +114215,13 @@ "readOnly": false }, { - "$id": "8648", + "$id": "8650", "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": "8649", + "$id": "8651", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114210,7 +114236,7 @@ "readOnly": false }, { - "$id": "8650", + "$id": "8652", "kind": "query", "name": "order", "serializedName": "order", @@ -114227,13 +114253,13 @@ "readOnly": false }, { - "$id": "8651", + "$id": "8653", "kind": "query", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8652", + "$id": "8654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114248,7 +114274,7 @@ "readOnly": false }, { - "$id": "8653", + "$id": "8655", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114290,13 +114316,13 @@ }, "parameters": [ { - "$id": "8654", + "$id": "8656", "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": "8655", + "$id": "8657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114312,13 +114338,13 @@ "decorators": [] }, { - "$id": "8656", + "$id": "8658", "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": "8657", + "$id": "8659", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114334,13 +114360,13 @@ "decorators": [] }, { - "$id": "8658", + "$id": "8660", "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": "8659", + "$id": "8661", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114356,7 +114382,7 @@ "decorators": [] }, { - "$id": "8660", + "$id": "8662", "kind": "method", "name": "order", "serializedName": "order", @@ -114374,13 +114400,13 @@ "decorators": [] }, { - "$id": "8661", + "$id": "8663", "kind": "method", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8662", + "$id": "8664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114396,7 +114422,7 @@ "decorators": [] }, { - "$id": "8663", + "$id": "8665", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114424,27 +114450,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions" }, { - "$id": "8664", + "$id": "8666", "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": "8665", + "$id": "8667", "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": "8666", + "$id": "8668", "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": "8667", + "$id": "8669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114462,7 +114488,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8668", + "$id": "8670", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -114479,7 +114505,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.contentType" }, { - "$id": "8669", + "$id": "8671", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114495,7 +114521,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.accept" }, { - "$id": "8670", + "$id": "8672", "kind": "body", "name": "createFineTuningCheckpointPermissionRequest", "serializedName": "createFineTuningCheckpointPermissionRequest", @@ -114543,13 +114569,13 @@ }, "parameters": [ { - "$id": "8671", + "$id": "8673", "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": "8672", + "$id": "8674", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114565,7 +114591,7 @@ "decorators": [] }, { - "$id": "8673", + "$id": "8675", "kind": "method", "name": "project_ids", "serializedName": "project_ids", @@ -114583,7 +114609,7 @@ "decorators": [] }, { - "$id": "8674", + "$id": "8676", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -114601,7 +114627,7 @@ "decorators": [] }, { - "$id": "8675", + "$id": "8677", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114629,27 +114655,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission" }, { - "$id": "8676", + "$id": "8678", "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": "8677", + "$id": "8679", "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": "8678", + "$id": "8680", "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": "8679", + "$id": "8681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114667,13 +114693,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8680", + "$id": "8682", "kind": "path", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8681", + "$id": "8683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114691,7 +114717,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.permission_id" }, { - "$id": "8682", + "$id": "8684", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114733,13 +114759,13 @@ }, "parameters": [ { - "$id": "8683", + "$id": "8685", "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": "8684", + "$id": "8686", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114755,13 +114781,13 @@ "decorators": [] }, { - "$id": "8685", + "$id": "8687", "kind": "method", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8686", + "$id": "8688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114777,7 +114803,7 @@ "decorators": [] }, { - "$id": "8687", + "$id": "8689", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114805,21 +114831,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission" }, { - "$id": "8688", + "$id": "8690", "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": "8689", + "$id": "8691", "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": "8690", + "$id": "8692", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114835,7 +114861,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.accept" }, { - "$id": "8691", + "$id": "8693", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -114852,7 +114878,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.contentType" }, { - "$id": "8692", + "$id": "8694", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -114900,7 +114926,7 @@ }, "parameters": [ { - "$id": "8693", + "$id": "8695", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114917,7 +114943,7 @@ "decorators": [] }, { - "$id": "8694", + "$id": "8696", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -114934,7 +114960,7 @@ "decorators": [] }, { - "$id": "8695", + "$id": "8697", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -114963,21 +114989,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob" }, { - "$id": "8696", + "$id": "8698", "kind": "basic", "name": "listPaginatedFineTuningJobs", "accessibility": "public", "apiVersions": [], "summary": "List your organization's fine-tuning jobs", "operation": { - "$id": "8697", + "$id": "8699", "name": "listPaginatedFineTuningJobs", "resourceName": "FineTuning", "summary": "List your organization's fine-tuning jobs", "accessibility": "public", "parameters": [ { - "$id": "8698", + "$id": "8700", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114993,13 +115019,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs.accept" }, { - "$id": "8699", + "$id": "8701", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8700", + "$id": "8702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115014,13 +115040,13 @@ "readOnly": false }, { - "$id": "8701", + "$id": "8703", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8702", + "$id": "8704", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115061,7 +115087,7 @@ }, "parameters": [ { - "$id": "8703", + "$id": "8705", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115078,13 +115104,13 @@ "decorators": [] }, { - "$id": "8704", + "$id": "8706", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8705", + "$id": "8707", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115100,13 +115126,13 @@ "decorators": [] }, { - "$id": "8706", + "$id": "8708", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8707", + "$id": "8709", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115133,21 +115159,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs" }, { - "$id": "8708", + "$id": "8710", "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": "8709", + "$id": "8711", "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": "8710", + "$id": "8712", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115163,13 +115189,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob.accept" }, { - "$id": "8711", + "$id": "8713", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8712", + "$id": "8714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115213,7 +115239,7 @@ }, "parameters": [ { - "$id": "8713", + "$id": "8715", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115230,13 +115256,13 @@ "decorators": [] }, { - "$id": "8714", + "$id": "8716", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8715", + "$id": "8717", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115263,21 +115289,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob" }, { - "$id": "8716", + "$id": "8718", "kind": "basic", "name": "cancelFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Immediately cancel a fine-tune job.", "operation": { - "$id": "8717", + "$id": "8719", "name": "cancelFineTuningJob", "resourceName": "FineTuning", "summary": "Immediately cancel a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8718", + "$id": "8720", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115293,13 +115319,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob.accept" }, { - "$id": "8719", + "$id": "8721", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8720", + "$id": "8722", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115343,7 +115369,7 @@ }, "parameters": [ { - "$id": "8721", + "$id": "8723", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115360,13 +115386,13 @@ "decorators": [] }, { - "$id": "8722", + "$id": "8724", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8723", + "$id": "8725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115393,21 +115419,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob" }, { - "$id": "8724", + "$id": "8726", "kind": "basic", "name": "listFineTuningJobCheckpoints", "accessibility": "public", "apiVersions": [], "summary": "List the checkpoints for a fine-tuning job.", "operation": { - "$id": "8725", + "$id": "8727", "name": "listFineTuningJobCheckpoints", "resourceName": "FineTuning", "summary": "List the checkpoints for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8726", + "$id": "8728", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115423,13 +115449,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.accept" }, { - "$id": "8727", + "$id": "8729", "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": "8728", + "$id": "8730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115447,13 +115473,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.fine_tuning_job_id" }, { - "$id": "8729", + "$id": "8731", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8730", + "$id": "8732", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115468,13 +115494,13 @@ "readOnly": false }, { - "$id": "8731", + "$id": "8733", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8732", + "$id": "8734", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115515,7 +115541,7 @@ }, "parameters": [ { - "$id": "8733", + "$id": "8735", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115532,13 +115558,13 @@ "decorators": [] }, { - "$id": "8734", + "$id": "8736", "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": "8735", + "$id": "8737", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115554,13 +115580,13 @@ "decorators": [] }, { - "$id": "8736", + "$id": "8738", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8737", + "$id": "8739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115576,13 +115602,13 @@ "decorators": [] }, { - "$id": "8738", + "$id": "8740", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8739", + "$id": "8741", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115609,21 +115635,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints" }, { - "$id": "8740", + "$id": "8742", "kind": "basic", "name": "listFineTuningEvents", "accessibility": "public", "apiVersions": [], "summary": "Get status updates for a fine-tuning job.", "operation": { - "$id": "8741", + "$id": "8743", "name": "listFineTuningEvents", "resourceName": "FineTuning", "summary": "Get status updates for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8742", + "$id": "8744", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115639,13 +115665,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.accept" }, { - "$id": "8743", + "$id": "8745", "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": "8744", + "$id": "8746", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115663,13 +115689,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.fine_tuning_job_id" }, { - "$id": "8745", + "$id": "8747", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8746", + "$id": "8748", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115684,13 +115710,13 @@ "readOnly": false }, { - "$id": "8747", + "$id": "8749", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8748", + "$id": "8750", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115731,7 +115757,7 @@ }, "parameters": [ { - "$id": "8749", + "$id": "8751", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115748,13 +115774,13 @@ "decorators": [] }, { - "$id": "8750", + "$id": "8752", "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": "8751", + "$id": "8753", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115770,13 +115796,13 @@ "decorators": [] }, { - "$id": "8752", + "$id": "8754", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8753", + "$id": "8755", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115792,13 +115818,13 @@ "decorators": [] }, { - "$id": "8754", + "$id": "8756", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8755", + "$id": "8757", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115825,27 +115851,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents" }, { - "$id": "8756", + "$id": "8758", "kind": "basic", "name": "pauseFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Pause a fine-tune job.", "operation": { - "$id": "8757", + "$id": "8759", "name": "pauseFineTuningJob", "resourceName": "FineTuning", "summary": "Pause a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8758", + "$id": "8760", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8759", + "$id": "8761", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115863,7 +115889,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob.fine_tuning_job_id" }, { - "$id": "8760", + "$id": "8762", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115905,13 +115931,13 @@ }, "parameters": [ { - "$id": "8761", + "$id": "8763", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8762", + "$id": "8764", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115927,7 +115953,7 @@ "decorators": [] }, { - "$id": "8763", + "$id": "8765", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115955,27 +115981,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob" }, { - "$id": "8764", + "$id": "8766", "kind": "basic", "name": "resumeFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Resume a paused fine-tune job.", "operation": { - "$id": "8765", + "$id": "8767", "name": "resumeFineTuningJob", "resourceName": "FineTuning", "summary": "Resume a paused fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8766", + "$id": "8768", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8767", + "$id": "8769", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115993,7 +116019,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.resumeFineTuningJob.fine_tuning_job_id" }, { - "$id": "8768", + "$id": "8770", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116035,13 +116061,13 @@ }, "parameters": [ { - "$id": "8769", + "$id": "8771", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8770", + "$id": "8772", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116057,7 +116083,7 @@ "decorators": [] }, { - "$id": "8771", + "$id": "8773", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116087,13 +116113,13 @@ ], "parameters": [ { - "$id": "8772", + "$id": "8774", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8773", + "$id": "8775", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -116104,7 +116130,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8774", + "$id": "8776", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -116122,31 +116148,31 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8775", + "$id": "8777", "kind": "client", "name": "Graders", "namespace": "OpenAI", "methods": [ { - "$id": "8776", + "$id": "8778", "kind": "basic", "name": "runGrader", "accessibility": "public", "apiVersions": [], "summary": "Run a grader.", "operation": { - "$id": "8777", + "$id": "8779", "name": "runGrader", "resourceName": "Graders", "summary": "Run a grader.", "accessibility": "public", "parameters": [ { - "$id": "8778", + "$id": "8780", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -116163,7 +116189,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.contentType" }, { - "$id": "8779", + "$id": "8781", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116179,7 +116205,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.accept" }, { - "$id": "8780", + "$id": "8782", "kind": "body", "name": "request", "serializedName": "request", @@ -116227,7 +116253,7 @@ }, "parameters": [ { - "$id": "8781", + "$id": "8783", "kind": "method", "name": "request", "serializedName": "request", @@ -116244,7 +116270,7 @@ "decorators": [] }, { - "$id": "8782", + "$id": "8784", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -116262,7 +116288,7 @@ "decorators": [] }, { - "$id": "8783", + "$id": "8785", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116290,21 +116316,21 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader" }, { - "$id": "8784", + "$id": "8786", "kind": "basic", "name": "validateGrader", "accessibility": "public", "apiVersions": [], "summary": "Validate a grader.", "operation": { - "$id": "8785", + "$id": "8787", "name": "validateGrader", "resourceName": "Graders", "summary": "Validate a grader.", "accessibility": "public", "parameters": [ { - "$id": "8786", + "$id": "8788", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -116321,7 +116347,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.contentType" }, { - "$id": "8787", + "$id": "8789", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116337,7 +116363,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.accept" }, { - "$id": "8788", + "$id": "8790", "kind": "body", "name": "request", "serializedName": "request", @@ -116385,7 +116411,7 @@ }, "parameters": [ { - "$id": "8789", + "$id": "8791", "kind": "method", "name": "request", "serializedName": "request", @@ -116402,7 +116428,7 @@ "decorators": [] }, { - "$id": "8790", + "$id": "8792", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -116420,7 +116446,7 @@ "decorators": [] }, { - "$id": "8791", + "$id": "8793", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116450,13 +116476,13 @@ ], "parameters": [ { - "$id": "8792", + "$id": "8794", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8793", + "$id": "8795", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -116467,7 +116493,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8794", + "$id": "8796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -116485,37 +116511,37 @@ "crossLanguageDefinitionId": "OpenAI.Graders", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8795", + "$id": "8797", "kind": "client", "name": "Evals", "namespace": "OpenAI", "methods": [ { - "$id": "8796", + "$id": "8798", "kind": "basic", "name": "listEvals", "accessibility": "public", "apiVersions": [], "summary": "List evaluations for a project.", "operation": { - "$id": "8797", + "$id": "8799", "name": "listEvals", "resourceName": "Evals", "summary": "List evaluations for a project.", "accessibility": "public", "parameters": [ { - "$id": "8798", + "$id": "8800", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8799", + "$id": "8801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116530,13 +116556,13 @@ "readOnly": false }, { - "$id": "8800", + "$id": "8802", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8801", + "$id": "8803", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116551,7 +116577,7 @@ "readOnly": false }, { - "$id": "8802", + "$id": "8804", "kind": "query", "name": "order", "serializedName": "order", @@ -116568,7 +116594,7 @@ "readOnly": false }, { - "$id": "8803", + "$id": "8805", "kind": "query", "name": "order_by", "serializedName": "order_by", @@ -116585,7 +116611,7 @@ "readOnly": false }, { - "$id": "8804", + "$id": "8806", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116627,13 +116653,13 @@ }, "parameters": [ { - "$id": "8805", + "$id": "8807", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8806", + "$id": "8808", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116649,13 +116675,13 @@ "decorators": [] }, { - "$id": "8807", + "$id": "8809", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8808", + "$id": "8810", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116671,7 +116697,7 @@ "decorators": [] }, { - "$id": "8809", + "$id": "8811", "kind": "method", "name": "order", "serializedName": "order", @@ -116689,7 +116715,7 @@ "decorators": [] }, { - "$id": "8810", + "$id": "8812", "kind": "method", "name": "order_by", "serializedName": "order_by", @@ -116707,7 +116733,7 @@ "decorators": [] }, { - "$id": "8811", + "$id": "8813", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116735,21 +116761,21 @@ "crossLanguageDefinitionId": "OpenAI.Evals.listEvals" }, { - "$id": "8812", + "$id": "8814", "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": "8813", + "$id": "8815", "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": "8814", + "$id": "8816", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -116766,7 +116792,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.contentType" }, { - "$id": "8815", + "$id": "8817", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116782,7 +116808,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.accept" }, { - "$id": "8816", + "$id": "8818", "kind": "body", "name": "body", "serializedName": "body", @@ -116830,7 +116856,7 @@ }, "parameters": [ { - "$id": "8817", + "$id": "8819", "kind": "method", "name": "body", "serializedName": "body", @@ -116847,7 +116873,7 @@ "decorators": [] }, { - "$id": "8818", + "$id": "8820", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -116865,7 +116891,7 @@ "decorators": [] }, { - "$id": "8819", + "$id": "8821", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116893,26 +116919,26 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval" }, { - "$id": "8820", + "$id": "8822", "kind": "basic", "name": "getEval", "accessibility": "public", "apiVersions": [], "summary": "Retrieve an evaluation by its ID.", "operation": { - "$id": "8821", + "$id": "8823", "name": "getEval", "resourceName": "Evals", "summary": "Retrieve an evaluation by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8822", + "$id": "8824", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8823", + "$id": "8825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116930,7 +116956,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval.eval_id" }, { - "$id": "8824", + "$id": "8826", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116972,12 +116998,12 @@ }, "parameters": [ { - "$id": "8825", + "$id": "8827", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8826", + "$id": "8828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116993,7 +117019,7 @@ "decorators": [] }, { - "$id": "8827", + "$id": "8829", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117021,27 +117047,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval" }, { - "$id": "8828", + "$id": "8830", "kind": "basic", "name": "updateEval", "accessibility": "public", "apiVersions": [], "doc": "Update select, mutable properties of a specified evaluation.", "operation": { - "$id": "8829", + "$id": "8831", "name": "updateEval", "resourceName": "Evals", "doc": "Update select, mutable properties of a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8830", + "$id": "8832", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8831", + "$id": "8833", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117059,7 +117085,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.eval_id" }, { - "$id": "8832", + "$id": "8834", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -117076,7 +117102,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.contentType" }, { - "$id": "8833", + "$id": "8835", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117092,7 +117118,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.accept" }, { - "$id": "8834", + "$id": "8836", "kind": "body", "name": "body", "serializedName": "body", @@ -117140,13 +117166,13 @@ }, "parameters": [ { - "$id": "8835", + "$id": "8837", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8836", + "$id": "8838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117162,7 +117188,7 @@ "decorators": [] }, { - "$id": "8837", + "$id": "8839", "kind": "method", "name": "body", "serializedName": "body", @@ -117179,7 +117205,7 @@ "decorators": [] }, { - "$id": "8838", + "$id": "8840", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -117197,7 +117223,7 @@ "decorators": [] }, { - "$id": "8839", + "$id": "8841", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117225,27 +117251,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval" }, { - "$id": "8840", + "$id": "8842", "kind": "basic", "name": "deleteEval", "accessibility": "public", "apiVersions": [], "doc": "Delete a specified evaluation.", "operation": { - "$id": "8841", + "$id": "8843", "name": "deleteEval", "resourceName": "Evals", "doc": "Delete a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8842", + "$id": "8844", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8843", + "$id": "8845", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117263,7 +117289,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval.eval_id" }, { - "$id": "8844", + "$id": "8846", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117305,13 +117331,13 @@ }, "parameters": [ { - "$id": "8845", + "$id": "8847", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8846", + "$id": "8848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117327,7 +117353,7 @@ "decorators": [] }, { - "$id": "8847", + "$id": "8849", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117355,7 +117381,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval" }, { - "$id": "8848", + "$id": "8850", "kind": "basic", "name": "getEvalRuns", "accessibility": "public", @@ -117363,7 +117389,7 @@ "doc": "Retrieve a list of runs for a specified evaluation.", "summary": "", "operation": { - "$id": "8849", + "$id": "8851", "name": "getEvalRuns", "resourceName": "Evals", "summary": "", @@ -117371,13 +117397,13 @@ "accessibility": "public", "parameters": [ { - "$id": "8850", + "$id": "8852", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8851", + "$id": "8853", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117395,13 +117421,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns.eval_id" }, { - "$id": "8852", + "$id": "8854", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8853", + "$id": "8855", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117416,13 +117442,13 @@ "readOnly": false }, { - "$id": "8854", + "$id": "8856", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8855", + "$id": "8857", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117437,7 +117463,7 @@ "readOnly": false }, { - "$id": "8856", + "$id": "8858", "kind": "query", "name": "order", "serializedName": "order", @@ -117454,7 +117480,7 @@ "readOnly": false }, { - "$id": "8857", + "$id": "8859", "kind": "query", "name": "status", "serializedName": "status", @@ -117471,7 +117497,7 @@ "readOnly": false }, { - "$id": "8858", + "$id": "8860", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117513,13 +117539,13 @@ }, "parameters": [ { - "$id": "8859", + "$id": "8861", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8860", + "$id": "8862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117535,13 +117561,13 @@ "decorators": [] }, { - "$id": "8861", + "$id": "8863", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8862", + "$id": "8864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117557,13 +117583,13 @@ "decorators": [] }, { - "$id": "8863", + "$id": "8865", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8864", + "$id": "8866", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117579,7 +117605,7 @@ "decorators": [] }, { - "$id": "8865", + "$id": "8867", "kind": "method", "name": "order", "serializedName": "order", @@ -117597,7 +117623,7 @@ "decorators": [] }, { - "$id": "8866", + "$id": "8868", "kind": "method", "name": "status", "serializedName": "status", @@ -117615,7 +117641,7 @@ "decorators": [] }, { - "$id": "8867", + "$id": "8869", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117643,27 +117669,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns" }, { - "$id": "8868", + "$id": "8870", "kind": "basic", "name": "createEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Create a new evaluation run, beginning the grading process.", "operation": { - "$id": "8869", + "$id": "8871", "name": "createEvalRun", "resourceName": "Evals", "doc": "Create a new evaluation run, beginning the grading process.", "accessibility": "public", "parameters": [ { - "$id": "8870", + "$id": "8872", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8871", + "$id": "8873", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117681,7 +117707,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.eval_id" }, { - "$id": "8872", + "$id": "8874", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -117698,7 +117724,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.contentType" }, { - "$id": "8873", + "$id": "8875", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117714,7 +117740,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.accept" }, { - "$id": "8874", + "$id": "8876", "kind": "body", "name": "body", "serializedName": "body", @@ -117762,13 +117788,13 @@ }, "parameters": [ { - "$id": "8875", + "$id": "8877", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8876", + "$id": "8878", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117784,7 +117810,7 @@ "decorators": [] }, { - "$id": "8877", + "$id": "8879", "kind": "method", "name": "body", "serializedName": "body", @@ -117801,7 +117827,7 @@ "decorators": [] }, { - "$id": "8878", + "$id": "8880", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -117819,7 +117845,7 @@ "decorators": [] }, { - "$id": "8879", + "$id": "8881", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117847,27 +117873,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun" }, { - "$id": "8880", + "$id": "8882", "kind": "basic", "name": "getEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific evaluation run by its ID.", "operation": { - "$id": "8881", + "$id": "8883", "name": "getEvalRun", "resourceName": "Evals", "doc": "Retrieve a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8882", + "$id": "8884", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8883", + "$id": "8885", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117885,13 +117911,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.eval_id" }, { - "$id": "8884", + "$id": "8886", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8885", + "$id": "8887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117909,7 +117935,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.run_id" }, { - "$id": "8886", + "$id": "8888", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117951,13 +117977,13 @@ }, "parameters": [ { - "$id": "8887", + "$id": "8889", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8888", + "$id": "8890", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117973,13 +117999,13 @@ "decorators": [] }, { - "$id": "8889", + "$id": "8891", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8890", + "$id": "8892", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117995,7 +118021,7 @@ "decorators": [] }, { - "$id": "8891", + "$id": "8893", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118023,27 +118049,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun" }, { - "$id": "8892", + "$id": "8894", "kind": "basic", "name": "cancelEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Cancel a specific evaluation run by its ID.", "operation": { - "$id": "8893", + "$id": "8895", "name": "cancelEvalRun", "resourceName": "Evals", "doc": "Cancel a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8894", + "$id": "8896", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8895", + "$id": "8897", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118061,13 +118087,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.eval_id" }, { - "$id": "8896", + "$id": "8898", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8897", + "$id": "8899", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118085,7 +118111,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.run_id" }, { - "$id": "8898", + "$id": "8900", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118127,13 +118153,13 @@ }, "parameters": [ { - "$id": "8899", + "$id": "8901", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8900", + "$id": "8902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118149,13 +118175,13 @@ "decorators": [] }, { - "$id": "8901", + "$id": "8903", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8902", + "$id": "8904", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118171,7 +118197,7 @@ "decorators": [] }, { - "$id": "8903", + "$id": "8905", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118199,27 +118225,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun" }, { - "$id": "8904", + "$id": "8906", "kind": "basic", "name": "deleteEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Delete a specific evaluation run by its ID.", "operation": { - "$id": "8905", + "$id": "8907", "name": "deleteEvalRun", "resourceName": "Evals", "doc": "Delete a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8906", + "$id": "8908", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8907", + "$id": "8909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118237,13 +118263,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.eval_id" }, { - "$id": "8908", + "$id": "8910", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8909", + "$id": "8911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118261,7 +118287,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.run_id" }, { - "$id": "8910", + "$id": "8912", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118303,13 +118329,13 @@ }, "parameters": [ { - "$id": "8911", + "$id": "8913", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8912", + "$id": "8914", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118325,13 +118351,13 @@ "decorators": [] }, { - "$id": "8913", + "$id": "8915", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8914", + "$id": "8916", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118347,7 +118373,7 @@ "decorators": [] }, { - "$id": "8915", + "$id": "8917", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118375,27 +118401,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun" }, { - "$id": "8916", + "$id": "8918", "kind": "basic", "name": "getEvalRunOutputItems", "accessibility": "public", "apiVersions": [], "doc": "Get a list of output items for a specified evaluation run.", "operation": { - "$id": "8917", + "$id": "8919", "name": "getEvalRunOutputItems", "resourceName": "Evals", "doc": "Get a list of output items for a specified evaluation run.", "accessibility": "public", "parameters": [ { - "$id": "8918", + "$id": "8920", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8919", + "$id": "8921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118413,13 +118439,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.eval_id" }, { - "$id": "8920", + "$id": "8922", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8921", + "$id": "8923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118437,13 +118463,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.run_id" }, { - "$id": "8922", + "$id": "8924", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8923", + "$id": "8925", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118458,13 +118484,13 @@ "readOnly": false }, { - "$id": "8924", + "$id": "8926", "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": "8925", + "$id": "8927", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118479,7 +118505,7 @@ "readOnly": false }, { - "$id": "8926", + "$id": "8928", "kind": "query", "name": "status", "serializedName": "status", @@ -118496,7 +118522,7 @@ "readOnly": false }, { - "$id": "8927", + "$id": "8929", "kind": "query", "name": "order", "serializedName": "order", @@ -118513,7 +118539,7 @@ "readOnly": false }, { - "$id": "8928", + "$id": "8930", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118555,13 +118581,13 @@ }, "parameters": [ { - "$id": "8929", + "$id": "8931", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8930", + "$id": "8932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118577,13 +118603,13 @@ "decorators": [] }, { - "$id": "8931", + "$id": "8933", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8932", + "$id": "8934", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118599,13 +118625,13 @@ "decorators": [] }, { - "$id": "8933", + "$id": "8935", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8934", + "$id": "8936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118621,13 +118647,13 @@ "decorators": [] }, { - "$id": "8935", + "$id": "8937", "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": "8936", + "$id": "8938", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118643,7 +118669,7 @@ "decorators": [] }, { - "$id": "8937", + "$id": "8939", "kind": "method", "name": "status", "serializedName": "status", @@ -118661,7 +118687,7 @@ "decorators": [] }, { - "$id": "8938", + "$id": "8940", "kind": "method", "name": "order", "serializedName": "order", @@ -118679,7 +118705,7 @@ "decorators": [] }, { - "$id": "8939", + "$id": "8941", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118707,27 +118733,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems" }, { - "$id": "8940", + "$id": "8942", "kind": "basic", "name": "getEvalRunOutputItem", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific output item from an evaluation run by its ID.", "operation": { - "$id": "8941", + "$id": "8943", "name": "getEvalRunOutputItem", "resourceName": "Evals", "doc": "Retrieve a specific output item from an evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8942", + "$id": "8944", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8943", + "$id": "8945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118745,13 +118771,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.eval_id" }, { - "$id": "8944", + "$id": "8946", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8945", + "$id": "8947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118769,13 +118795,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.run_id" }, { - "$id": "8946", + "$id": "8948", "kind": "path", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8947", + "$id": "8949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118793,7 +118819,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.output_item_id" }, { - "$id": "8948", + "$id": "8950", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118835,13 +118861,13 @@ }, "parameters": [ { - "$id": "8949", + "$id": "8951", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8950", + "$id": "8952", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118857,13 +118883,13 @@ "decorators": [] }, { - "$id": "8951", + "$id": "8953", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8952", + "$id": "8954", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118879,13 +118905,13 @@ "decorators": [] }, { - "$id": "8953", + "$id": "8955", "kind": "method", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8954", + "$id": "8956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118901,7 +118927,7 @@ "decorators": [] }, { - "$id": "8955", + "$id": "8957", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118931,13 +118957,13 @@ ], "parameters": [ { - "$id": "8956", + "$id": "8958", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8957", + "$id": "8959", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -118948,7 +118974,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8958", + "$id": "8960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -118966,31 +118992,31 @@ "crossLanguageDefinitionId": "OpenAI.Evals", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "8959", + "$id": "8961", "kind": "client", "name": "Responses", "namespace": "OpenAI", "methods": [ { - "$id": "8960", + "$id": "8962", "kind": "basic", "name": "createResponse", "accessibility": "public", "apiVersions": [], "doc": "Creates a model response.", "operation": { - "$id": "8961", + "$id": "8963", "name": "createResponse", "resourceName": "Responses", "doc": "Creates a model response.", "accessibility": "public", "parameters": [ { - "$id": "8962", + "$id": "8964", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119006,7 +119032,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.accept" }, { - "$id": "8963", + "$id": "8965", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -119023,7 +119049,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.contentType" }, { - "$id": "8964", + "$id": "8966", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -119048,15 +119074,15 @@ 200 ], "bodyType": { - "$id": "8965", + "$id": "8967", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "5151" + "$ref": "5153" }, { - "$ref": "5336" + "$ref": "5338" } ], "namespace": "", @@ -119092,7 +119118,7 @@ }, "parameters": [ { - "$id": "8966", + "$id": "8968", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119109,7 +119135,7 @@ "decorators": [] }, { - "$id": "8967", + "$id": "8969", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -119126,7 +119152,7 @@ "decorators": [] }, { - "$id": "8968", + "$id": "8970", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -119146,7 +119172,7 @@ ], "response": { "type": { - "$ref": "8965" + "$ref": "8967" } }, "isOverride": false, @@ -119155,27 +119181,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse" }, { - "$id": "8969", + "$id": "8971", "kind": "basic", "name": "getResponse", "accessibility": "public", "apiVersions": [], "doc": "Retrieves a model response with the given ID.", "operation": { - "$id": "8970", + "$id": "8972", "name": "getResponse", "resourceName": "Responses", "doc": "Retrieves a model response with the given ID.", "accessibility": "public", "parameters": [ { - "$id": "8971", + "$id": "8973", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8972", + "$id": "8974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119193,12 +119219,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse.response_id" }, { - "$id": "8973", + "$id": "8975", "kind": "query", "name": "includables", "serializedName": "include[]", "type": { - "$ref": "5141" + "$ref": "5143" }, "isApiVersion": false, "explode": true, @@ -119209,13 +119235,13 @@ "readOnly": false }, { - "$id": "8974", + "$id": "8976", "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": "8975", + "$id": "8977", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -119230,13 +119256,13 @@ "readOnly": false }, { - "$id": "8976", + "$id": "8978", "kind": "query", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8977", + "$id": "8979", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119251,12 +119277,12 @@ "readOnly": false }, { - "$id": "8978", + "$id": "8980", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "8979", + "$id": "8981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119277,15 +119303,15 @@ 200 ], "bodyType": { - "$id": "8980", + "$id": "8982", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "5151" + "$ref": "5153" }, { - "$ref": "5336" + "$ref": "5338" } ], "namespace": "", @@ -119318,13 +119344,13 @@ }, "parameters": [ { - "$id": "8981", + "$id": "8983", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8982", + "$id": "8984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119340,12 +119366,12 @@ "decorators": [] }, { - "$id": "8983", + "$id": "8985", "kind": "method", "name": "includables", "serializedName": "include[]", "type": { - "$ref": "5141" + "$ref": "5143" }, "location": "Query", "isApiVersion": false, @@ -119357,13 +119383,13 @@ "decorators": [] }, { - "$id": "8984", + "$id": "8986", "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": "8985", + "$id": "8987", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -119379,13 +119405,13 @@ "decorators": [] }, { - "$id": "8986", + "$id": "8988", "kind": "method", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8987", + "$id": "8989", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119401,12 +119427,12 @@ "decorators": [] }, { - "$id": "8988", + "$id": "8990", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "8979" + "$ref": "8981" }, "location": "Header", "isApiVersion": false, @@ -119420,7 +119446,7 @@ ], "response": { "type": { - "$ref": "8980" + "$ref": "8982" } }, "isOverride": false, @@ -119429,25 +119455,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse" }, { - "$id": "8989", + "$id": "8991", "kind": "basic", "name": "deleteResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8990", + "$id": "8992", "name": "deleteResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "8991", + "$id": "8993", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "8992", + "$id": "8994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119465,7 +119491,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse.response_id" }, { - "$id": "8993", + "$id": "8995", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119487,7 +119513,7 @@ 200 ], "bodyType": { - "$ref": "5822" + "$ref": "5824" }, "headers": [], "isErrorResponse": false, @@ -119507,13 +119533,13 @@ }, "parameters": [ { - "$id": "8994", + "$id": "8996", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "8995", + "$id": "8997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119529,7 +119555,7 @@ "decorators": [] }, { - "$id": "8996", + "$id": "8998", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119548,7 +119574,7 @@ ], "response": { "type": { - "$ref": "5822" + "$ref": "5824" } }, "isOverride": false, @@ -119557,25 +119583,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse" }, { - "$id": "8997", + "$id": "8999", "kind": "basic", "name": "cancelResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8998", + "$id": "9000", "name": "cancelResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "8999", + "$id": "9001", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "9000", + "$id": "9002", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119593,7 +119619,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse.response_id" }, { - "$id": "9001", + "$id": "9003", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119615,7 +119641,7 @@ 200 ], "bodyType": { - "$ref": "5151" + "$ref": "5153" }, "headers": [], "isErrorResponse": false, @@ -119635,13 +119661,13 @@ }, "parameters": [ { - "$id": "9002", + "$id": "9004", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "9003", + "$id": "9005", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119657,7 +119683,7 @@ "decorators": [] }, { - "$id": "9004", + "$id": "9006", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119676,7 +119702,7 @@ ], "response": { "type": { - "$ref": "5151" + "$ref": "5153" } }, "isOverride": false, @@ -119685,27 +119711,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse" }, { - "$id": "9005", + "$id": "9007", "kind": "paging", "name": "GetResponseInputItems", "accessibility": "public", "apiVersions": [], "doc": "Returns a list of input items for a given response.", "operation": { - "$id": "9006", + "$id": "9008", "name": "GetResponseInputItems", "resourceName": "Responses", "doc": "Returns a list of input items for a given response.", "accessibility": "public", "parameters": [ { - "$id": "9007", + "$id": "9009", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9008", + "$id": "9010", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119723,13 +119749,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.listInputItems.response_id" }, { - "$id": "9009", + "$id": "9011", "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": "9010", + "$id": "9012", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119744,7 +119770,7 @@ "readOnly": false }, { - "$id": "9011", + "$id": "9013", "kind": "query", "name": "order", "serializedName": "order", @@ -119761,13 +119787,13 @@ "readOnly": false }, { - "$id": "9012", + "$id": "9014", "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": "9013", + "$id": "9015", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119782,13 +119808,13 @@ "readOnly": false }, { - "$id": "9014", + "$id": "9016", "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": "9015", + "$id": "9017", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119803,7 +119829,7 @@ "readOnly": false }, { - "$id": "9016", + "$id": "9018", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119825,7 +119851,7 @@ 200 ], "bodyType": { - "$ref": "5827" + "$ref": "5829" }, "headers": [], "isErrorResponse": false, @@ -119845,13 +119871,13 @@ }, "parameters": [ { - "$id": "9017", + "$id": "9019", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "9018", + "$id": "9020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119867,13 +119893,13 @@ "decorators": [] }, { - "$id": "9019", + "$id": "9021", "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": "9020", + "$id": "9022", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119889,7 +119915,7 @@ "decorators": [] }, { - "$id": "9021", + "$id": "9023", "kind": "method", "name": "order", "serializedName": "order", @@ -119907,13 +119933,13 @@ "decorators": [] }, { - "$id": "9022", + "$id": "9024", "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": "9023", + "$id": "9025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119929,13 +119955,13 @@ "decorators": [] }, { - "$id": "9024", + "$id": "9026", "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": "9025", + "$id": "9027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119951,7 +119977,7 @@ "decorators": [] }, { - "$id": "9026", + "$id": "9028", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119970,7 +119996,7 @@ ], "response": { "type": { - "$ref": "5191" + "$ref": "5193" }, "resultSegments": [ "data" @@ -119986,7 +120012,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9012" + "$ref": "9014" }, "responseSegments": [ "last_id" @@ -119998,13 +120024,13 @@ ], "parameters": [ { - "$id": "9027", + "$id": "9029", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9028", + "$id": "9030", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120015,7 +120041,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9029", + "$id": "9031", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120033,31 +120059,31 @@ "crossLanguageDefinitionId": "OpenAI.Responses", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9030", + "$id": "9032", "kind": "client", "name": "Images", "namespace": "OpenAI", "methods": [ { - "$id": "9031", + "$id": "9033", "kind": "basic", "name": "GenerateImages", "accessibility": "public", "apiVersions": [], "summary": "Creates an image given a prompt", "operation": { - "$id": "9032", + "$id": "9034", "name": "GenerateImages", "resourceName": "Images", "summary": "Creates an image given a prompt", "accessibility": "public", "parameters": [ { - "$id": "9033", + "$id": "9035", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120073,7 +120099,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.accept" }, { - "$id": "9034", + "$id": "9036", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120090,12 +120116,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.contentType" }, { - "$id": "9035", + "$id": "9037", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5836" + "$ref": "5838" }, "isApiVersion": false, "contentTypes": [ @@ -120115,7 +120141,7 @@ 200 ], "bodyType": { - "$ref": "5863" + "$ref": "5865" }, "headers": [], "isErrorResponse": false, @@ -120138,7 +120164,7 @@ }, "parameters": [ { - "$id": "9036", + "$id": "9038", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120155,12 +120181,12 @@ "decorators": [] }, { - "$id": "9037", + "$id": "9039", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5836" + "$ref": "5838" }, "location": "Body", "isApiVersion": false, @@ -120172,7 +120198,7 @@ "decorators": [] }, { - "$id": "9038", + "$id": "9040", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120192,7 +120218,7 @@ ], "response": { "type": { - "$ref": "5863" + "$ref": "5865" } }, "isOverride": false, @@ -120201,21 +120227,21 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage" }, { - "$id": "9039", + "$id": "9041", "kind": "basic", "name": "GenerateImageEdits", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "9040", + "$id": "9042", "name": "GenerateImageEdits", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "9041", + "$id": "9043", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120231,7 +120257,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.accept" }, { - "$id": "9042", + "$id": "9044", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120247,12 +120273,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.contentType" }, { - "$id": "9043", + "$id": "9045", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5890" + "$ref": "5892" }, "isApiVersion": false, "contentTypes": [ @@ -120272,7 +120298,7 @@ 200 ], "bodyType": { - "$ref": "5863" + "$ref": "5865" }, "headers": [], "isErrorResponse": false, @@ -120295,7 +120321,7 @@ }, "parameters": [ { - "$id": "9044", + "$id": "9046", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120312,7 +120338,7 @@ "decorators": [] }, { - "$id": "9045", + "$id": "9047", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120329,12 +120355,12 @@ "decorators": [] }, { - "$id": "9046", + "$id": "9048", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5890" + "$ref": "5892" }, "location": "Body", "isApiVersion": false, @@ -120348,7 +120374,7 @@ ], "response": { "type": { - "$ref": "5863" + "$ref": "5865" } }, "isOverride": false, @@ -120357,21 +120383,21 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit" }, { - "$id": "9047", + "$id": "9049", "kind": "basic", "name": "GenerateImageVariations", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "9048", + "$id": "9050", "name": "GenerateImageVariations", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "9049", + "$id": "9051", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120387,7 +120413,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.accept" }, { - "$id": "9050", + "$id": "9052", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120403,12 +120429,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.contentType" }, { - "$id": "9051", + "$id": "9053", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5916" + "$ref": "5918" }, "isApiVersion": false, "contentTypes": [ @@ -120428,7 +120454,7 @@ 200 ], "bodyType": { - "$ref": "5863" + "$ref": "5865" }, "headers": [], "isErrorResponse": false, @@ -120451,7 +120477,7 @@ }, "parameters": [ { - "$id": "9052", + "$id": "9054", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120468,7 +120494,7 @@ "decorators": [] }, { - "$id": "9053", + "$id": "9055", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120485,12 +120511,12 @@ "decorators": [] }, { - "$id": "9054", + "$id": "9056", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5916" + "$ref": "5918" }, "location": "Body", "isApiVersion": false, @@ -120504,7 +120530,7 @@ ], "response": { "type": { - "$ref": "5863" + "$ref": "5865" } }, "isOverride": false, @@ -120515,13 +120541,13 @@ ], "parameters": [ { - "$id": "9055", + "$id": "9057", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9056", + "$id": "9058", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120532,7 +120558,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9057", + "$id": "9059", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120550,31 +120576,31 @@ "crossLanguageDefinitionId": "OpenAI.Images", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9058", + "$id": "9060", "kind": "client", "name": "Messages", "namespace": "OpenAI", "methods": [ { - "$id": "9059", + "$id": "9061", "kind": "basic", "name": "createMessage", "accessibility": "public", "apiVersions": [], "summary": "Create a message.", "operation": { - "$id": "9060", + "$id": "9062", "name": "createMessage", "resourceName": "Messages", "summary": "Create a message.", "accessibility": "public", "parameters": [ { - "$id": "9061", + "$id": "9063", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120590,7 +120616,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.accept" }, { - "$id": "9062", + "$id": "9064", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120606,13 +120632,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.openAIBeta" }, { - "$id": "9063", + "$id": "9065", "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": "9064", + "$id": "9066", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120630,7 +120656,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.thread_id" }, { - "$id": "9065", + "$id": "9067", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120647,12 +120673,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.contentType" }, { - "$id": "9066", + "$id": "9068", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5931" + "$ref": "5933" }, "isApiVersion": false, "contentTypes": [ @@ -120672,7 +120698,7 @@ 200 ], "bodyType": { - "$ref": "6019" + "$ref": "6021" }, "headers": [], "isErrorResponse": false, @@ -120695,7 +120721,7 @@ }, "parameters": [ { - "$id": "9067", + "$id": "9069", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120712,7 +120738,7 @@ "decorators": [] }, { - "$id": "9068", + "$id": "9070", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120729,13 +120755,13 @@ "decorators": [] }, { - "$id": "9069", + "$id": "9071", "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": "9070", + "$id": "9072", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120751,12 +120777,12 @@ "decorators": [] }, { - "$id": "9071", + "$id": "9073", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5931" + "$ref": "5933" }, "location": "Body", "isApiVersion": false, @@ -120768,7 +120794,7 @@ "decorators": [] }, { - "$id": "9072", + "$id": "9074", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120788,7 +120814,7 @@ ], "response": { "type": { - "$ref": "6019" + "$ref": "6021" } }, "isOverride": false, @@ -120797,21 +120823,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage" }, { - "$id": "9073", + "$id": "9075", "kind": "paging", "name": "listMessages", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of messages for a given thread.", "operation": { - "$id": "9074", + "$id": "9076", "name": "listMessages", "resourceName": "Messages", "summary": "Returns a list of messages for a given thread.", "accessibility": "public", "parameters": [ { - "$id": "9075", + "$id": "9077", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120827,7 +120853,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.accept" }, { - "$id": "9076", + "$id": "9078", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120843,13 +120869,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.openAIBeta" }, { - "$id": "9077", + "$id": "9079", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "9078", + "$id": "9080", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120867,13 +120893,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.thread_id" }, { - "$id": "9079", + "$id": "9081", "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": "9080", + "$id": "9082", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -120888,7 +120914,7 @@ "readOnly": false }, { - "$id": "9081", + "$id": "9083", "kind": "query", "name": "order", "serializedName": "order", @@ -120905,13 +120931,13 @@ "readOnly": false }, { - "$id": "9082", + "$id": "9084", "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": "9083", + "$id": "9085", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120926,13 +120952,13 @@ "readOnly": false }, { - "$id": "9084", + "$id": "9086", "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": "9085", + "$id": "9087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120953,7 +120979,7 @@ 200 ], "bodyType": { - "$ref": "6059" + "$ref": "6061" }, "headers": [], "isErrorResponse": false, @@ -120973,7 +120999,7 @@ }, "parameters": [ { - "$id": "9086", + "$id": "9088", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120990,7 +121016,7 @@ "decorators": [] }, { - "$id": "9087", + "$id": "9089", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121007,13 +121033,13 @@ "decorators": [] }, { - "$id": "9088", + "$id": "9090", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "9089", + "$id": "9091", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121029,13 +121055,13 @@ "decorators": [] }, { - "$id": "9090", + "$id": "9092", "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": "9091", + "$id": "9093", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -121051,7 +121077,7 @@ "decorators": [] }, { - "$id": "9092", + "$id": "9094", "kind": "method", "name": "order", "serializedName": "order", @@ -121069,13 +121095,13 @@ "decorators": [] }, { - "$id": "9093", + "$id": "9095", "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": "9094", + "$id": "9096", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121091,13 +121117,13 @@ "decorators": [] }, { - "$id": "9095", + "$id": "9097", "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": "9096", + "$id": "9098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121115,7 +121141,7 @@ ], "response": { "type": { - "$ref": "6062" + "$ref": "6064" }, "resultSegments": [ "data" @@ -121131,7 +121157,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9082" + "$ref": "9084" }, "responseSegments": [ "last_id" @@ -121141,21 +121167,21 @@ } }, { - "$id": "9097", + "$id": "9099", "kind": "basic", "name": "getMessage", "accessibility": "public", "apiVersions": [], "summary": "Retrieve a message.", "operation": { - "$id": "9098", + "$id": "9100", "name": "getMessage", "resourceName": "Messages", "summary": "Retrieve a message.", "accessibility": "public", "parameters": [ { - "$id": "9099", + "$id": "9101", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121171,7 +121197,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.accept" }, { - "$id": "9100", + "$id": "9102", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121187,13 +121213,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.openAIBeta" }, { - "$id": "9101", + "$id": "9103", "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": "9102", + "$id": "9104", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121211,13 +121237,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.thread_id" }, { - "$id": "9103", + "$id": "9105", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "9104", + "$id": "9106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121241,7 +121267,7 @@ 200 ], "bodyType": { - "$ref": "6019" + "$ref": "6021" }, "headers": [], "isErrorResponse": false, @@ -121261,7 +121287,7 @@ }, "parameters": [ { - "$id": "9105", + "$id": "9107", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121278,7 +121304,7 @@ "decorators": [] }, { - "$id": "9106", + "$id": "9108", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121295,13 +121321,13 @@ "decorators": [] }, { - "$id": "9107", + "$id": "9109", "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": "9108", + "$id": "9110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121317,13 +121343,13 @@ "decorators": [] }, { - "$id": "9109", + "$id": "9111", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "9110", + "$id": "9112", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121341,7 +121367,7 @@ ], "response": { "type": { - "$ref": "6019" + "$ref": "6021" } }, "isOverride": false, @@ -121350,21 +121376,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage" }, { - "$id": "9111", + "$id": "9113", "kind": "basic", "name": "modifyMessage", "accessibility": "public", "apiVersions": [], "summary": "Modifies a message.", "operation": { - "$id": "9112", + "$id": "9114", "name": "modifyMessage", "resourceName": "Messages", "summary": "Modifies a message.", "accessibility": "public", "parameters": [ { - "$id": "9113", + "$id": "9115", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121380,7 +121406,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.accept" }, { - "$id": "9114", + "$id": "9116", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121396,13 +121422,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.openAIBeta" }, { - "$id": "9115", + "$id": "9117", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9116", + "$id": "9118", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121420,13 +121446,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.thread_id" }, { - "$id": "9117", + "$id": "9119", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9118", + "$id": "9120", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121444,7 +121470,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.message_id" }, { - "$id": "9119", + "$id": "9121", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121461,12 +121487,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.contentType" }, { - "$id": "9120", + "$id": "9122", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6069" + "$ref": "6071" }, "isApiVersion": false, "contentTypes": [ @@ -121486,7 +121512,7 @@ 200 ], "bodyType": { - "$ref": "6019" + "$ref": "6021" }, "headers": [], "isErrorResponse": false, @@ -121509,7 +121535,7 @@ }, "parameters": [ { - "$id": "9121", + "$id": "9123", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121526,7 +121552,7 @@ "decorators": [] }, { - "$id": "9122", + "$id": "9124", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121543,13 +121569,13 @@ "decorators": [] }, { - "$id": "9123", + "$id": "9125", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9124", + "$id": "9126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121565,13 +121591,13 @@ "decorators": [] }, { - "$id": "9125", + "$id": "9127", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9126", + "$id": "9128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121587,12 +121613,12 @@ "decorators": [] }, { - "$id": "9127", + "$id": "9129", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6069" + "$ref": "6071" }, "location": "Body", "isApiVersion": false, @@ -121604,7 +121630,7 @@ "decorators": [] }, { - "$id": "9128", + "$id": "9130", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -121624,7 +121650,7 @@ ], "response": { "type": { - "$ref": "6019" + "$ref": "6021" } }, "isOverride": false, @@ -121633,21 +121659,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage" }, { - "$id": "9129", + "$id": "9131", "kind": "basic", "name": "deleteMessage", "accessibility": "public", "apiVersions": [], "summary": "Deletes a message.", "operation": { - "$id": "9130", + "$id": "9132", "name": "deleteMessage", "resourceName": "Messages", "summary": "Deletes a message.", "accessibility": "public", "parameters": [ { - "$id": "9131", + "$id": "9133", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121663,7 +121689,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.accept" }, { - "$id": "9132", + "$id": "9134", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121679,13 +121705,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.openAIBeta" }, { - "$id": "9133", + "$id": "9135", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9134", + "$id": "9136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121703,13 +121729,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.thread_id" }, { - "$id": "9135", + "$id": "9137", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9136", + "$id": "9138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121733,7 +121759,7 @@ 200 ], "bodyType": { - "$ref": "6071" + "$ref": "6073" }, "headers": [], "isErrorResponse": false, @@ -121753,7 +121779,7 @@ }, "parameters": [ { - "$id": "9137", + "$id": "9139", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121770,7 +121796,7 @@ "decorators": [] }, { - "$id": "9138", + "$id": "9140", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121787,13 +121813,13 @@ "decorators": [] }, { - "$id": "9139", + "$id": "9141", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9140", + "$id": "9142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121809,13 +121835,13 @@ "decorators": [] }, { - "$id": "9141", + "$id": "9143", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9142", + "$id": "9144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121833,7 +121859,7 @@ ], "response": { "type": { - "$ref": "6071" + "$ref": "6073" } }, "isOverride": false, @@ -121844,13 +121870,13 @@ ], "parameters": [ { - "$id": "9143", + "$id": "9145", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9144", + "$id": "9146", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -121861,7 +121887,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9145", + "$id": "9147", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -121879,31 +121905,31 @@ "crossLanguageDefinitionId": "OpenAI.Messages", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9146", + "$id": "9148", "kind": "client", "name": "Moderations", "namespace": "OpenAI", "methods": [ { - "$id": "9147", + "$id": "9149", "kind": "basic", "name": "ClassifyText", "accessibility": "public", "apiVersions": [], "summary": "Classifies if text is potentially harmful.", "operation": { - "$id": "9148", + "$id": "9150", "name": "ClassifyText", "resourceName": "Moderations", "summary": "Classifies if text is potentially harmful.", "accessibility": "public", "parameters": [ { - "$id": "9149", + "$id": "9151", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121919,7 +121945,7 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.accept" }, { - "$id": "9150", + "$id": "9152", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121936,12 +121962,12 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.contentType" }, { - "$id": "9151", + "$id": "9153", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6077" + "$ref": "6079" }, "isApiVersion": false, "contentTypes": [ @@ -121961,7 +121987,7 @@ 200 ], "bodyType": { - "$ref": "6094" + "$ref": "6096" }, "headers": [], "isErrorResponse": false, @@ -121984,7 +122010,7 @@ }, "parameters": [ { - "$id": "9152", + "$id": "9154", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122001,12 +122027,12 @@ "decorators": [] }, { - "$id": "9153", + "$id": "9155", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6077" + "$ref": "6079" }, "location": "Body", "isApiVersion": false, @@ -122018,7 +122044,7 @@ "decorators": [] }, { - "$id": "9154", + "$id": "9156", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -122038,7 +122064,7 @@ ], "response": { "type": { - "$ref": "6094" + "$ref": "6096" } }, "isOverride": false, @@ -122049,13 +122075,13 @@ ], "parameters": [ { - "$id": "9155", + "$id": "9157", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9156", + "$id": "9158", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -122066,7 +122092,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9157", + "$id": "9159", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -122084,31 +122110,31 @@ "crossLanguageDefinitionId": "OpenAI.Moderations", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9158", + "$id": "9160", "kind": "client", "name": "Runs", "namespace": "OpenAI", "methods": [ { - "$id": "9159", + "$id": "9161", "kind": "basic", "name": "createThreadAndRun", "accessibility": "public", "apiVersions": [], "summary": "Create a thread and run it in one request.", "operation": { - "$id": "9160", + "$id": "9162", "name": "createThreadAndRun", "resourceName": "Runs", "summary": "Create a thread and run it in one request.", "accessibility": "public", "parameters": [ { - "$id": "9161", + "$id": "9163", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122124,7 +122150,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.accept" }, { - "$id": "9162", + "$id": "9164", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122140,7 +122166,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.openAIBeta" }, { - "$id": "9163", + "$id": "9165", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -122157,12 +122183,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.contentType" }, { - "$id": "9164", + "$id": "9166", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6194" + "$ref": "6196" }, "isApiVersion": false, "contentTypes": [ @@ -122182,7 +122208,7 @@ 200 ], "bodyType": { - "$ref": "6260" + "$ref": "6262" }, "headers": [], "isErrorResponse": false, @@ -122205,7 +122231,7 @@ }, "parameters": [ { - "$id": "9165", + "$id": "9167", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122222,7 +122248,7 @@ "decorators": [] }, { - "$id": "9166", + "$id": "9168", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122239,12 +122265,12 @@ "decorators": [] }, { - "$id": "9167", + "$id": "9169", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6194" + "$ref": "6196" }, "location": "Body", "isApiVersion": false, @@ -122256,7 +122282,7 @@ "decorators": [] }, { - "$id": "9168", + "$id": "9170", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -122276,7 +122302,7 @@ ], "response": { "type": { - "$ref": "6260" + "$ref": "6262" } }, "isOverride": false, @@ -122285,21 +122311,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun" }, { - "$id": "9169", + "$id": "9171", "kind": "basic", "name": "createRun", "accessibility": "public", "apiVersions": [], "summary": "Create a run.", "operation": { - "$id": "9170", + "$id": "9172", "name": "createRun", "resourceName": "Runs", "summary": "Create a run.", "accessibility": "public", "parameters": [ { - "$id": "9171", + "$id": "9173", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122315,7 +122341,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.accept" }, { - "$id": "9172", + "$id": "9174", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122331,13 +122357,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.openAIBeta" }, { - "$id": "9173", + "$id": "9175", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9174", + "$id": "9176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122355,13 +122381,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.thread_id" }, { - "$id": "9175", + "$id": "9177", "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": "9176", + "$id": "9178", "kind": "array", "name": "ArrayIncludedRunStepProperty", "valueType": { @@ -122380,7 +122406,7 @@ "readOnly": false }, { - "$id": "9177", + "$id": "9179", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -122397,12 +122423,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.contentType" }, { - "$id": "9178", + "$id": "9180", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6356" + "$ref": "6358" }, "isApiVersion": false, "contentTypes": [ @@ -122422,7 +122448,7 @@ 200 ], "bodyType": { - "$ref": "6260" + "$ref": "6262" }, "headers": [], "isErrorResponse": false, @@ -122445,7 +122471,7 @@ }, "parameters": [ { - "$id": "9179", + "$id": "9181", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122462,7 +122488,7 @@ "decorators": [] }, { - "$id": "9180", + "$id": "9182", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122479,13 +122505,13 @@ "decorators": [] }, { - "$id": "9181", + "$id": "9183", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9182", + "$id": "9184", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122501,13 +122527,13 @@ "decorators": [] }, { - "$id": "9183", + "$id": "9185", "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": "9176" + "$ref": "9178" }, "location": "Query", "isApiVersion": false, @@ -122519,12 +122545,12 @@ "decorators": [] }, { - "$id": "9184", + "$id": "9186", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6356" + "$ref": "6358" }, "location": "Body", "isApiVersion": false, @@ -122536,7 +122562,7 @@ "decorators": [] }, { - "$id": "9185", + "$id": "9187", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -122556,7 +122582,7 @@ ], "response": { "type": { - "$ref": "6260" + "$ref": "6262" } }, "isOverride": false, @@ -122565,21 +122591,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun" }, { - "$id": "9186", + "$id": "9188", "kind": "paging", "name": "listRuns", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of runs belonging to a thread.", "operation": { - "$id": "9187", + "$id": "9189", "name": "listRuns", "resourceName": "Runs", "summary": "Returns a list of runs belonging to a thread.", "accessibility": "public", "parameters": [ { - "$id": "9188", + "$id": "9190", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122595,7 +122621,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.accept" }, { - "$id": "9189", + "$id": "9191", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122611,13 +122637,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.openAIBeta" }, { - "$id": "9190", + "$id": "9192", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9191", + "$id": "9193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122635,13 +122661,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.thread_id" }, { - "$id": "9192", + "$id": "9194", "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": "9193", + "$id": "9195", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122656,7 +122682,7 @@ "readOnly": false }, { - "$id": "9194", + "$id": "9196", "kind": "query", "name": "order", "serializedName": "order", @@ -122673,13 +122699,13 @@ "readOnly": false }, { - "$id": "9195", + "$id": "9197", "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": "9196", + "$id": "9198", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122694,13 +122720,13 @@ "readOnly": false }, { - "$id": "9197", + "$id": "9199", "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": "9198", + "$id": "9200", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122721,7 +122747,7 @@ 200 ], "bodyType": { - "$ref": "6398" + "$ref": "6400" }, "headers": [], "isErrorResponse": false, @@ -122741,7 +122767,7 @@ }, "parameters": [ { - "$id": "9199", + "$id": "9201", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122758,7 +122784,7 @@ "decorators": [] }, { - "$id": "9200", + "$id": "9202", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122775,13 +122801,13 @@ "decorators": [] }, { - "$id": "9201", + "$id": "9203", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9202", + "$id": "9204", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122797,13 +122823,13 @@ "decorators": [] }, { - "$id": "9203", + "$id": "9205", "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": "9204", + "$id": "9206", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122819,7 +122845,7 @@ "decorators": [] }, { - "$id": "9205", + "$id": "9207", "kind": "method", "name": "order", "serializedName": "order", @@ -122837,13 +122863,13 @@ "decorators": [] }, { - "$id": "9206", + "$id": "9208", "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": "9207", + "$id": "9209", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122859,13 +122885,13 @@ "decorators": [] }, { - "$id": "9208", + "$id": "9210", "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": "9209", + "$id": "9211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122883,7 +122909,7 @@ ], "response": { "type": { - "$ref": "6401" + "$ref": "6403" }, "resultSegments": [ "data" @@ -122899,7 +122925,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9195" + "$ref": "9197" }, "responseSegments": [ "last_id" @@ -122909,21 +122935,21 @@ } }, { - "$id": "9210", + "$id": "9212", "kind": "basic", "name": "getRun", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run.", "operation": { - "$id": "9211", + "$id": "9213", "name": "getRun", "resourceName": "Runs", "summary": "Retrieves a run.", "accessibility": "public", "parameters": [ { - "$id": "9212", + "$id": "9214", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122939,7 +122965,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.accept" }, { - "$id": "9213", + "$id": "9215", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122955,13 +122981,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.openAIBeta" }, { - "$id": "9214", + "$id": "9216", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9215", + "$id": "9217", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122979,13 +123005,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.thread_id" }, { - "$id": "9216", + "$id": "9218", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9217", + "$id": "9219", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123009,7 +123035,7 @@ 200 ], "bodyType": { - "$ref": "6260" + "$ref": "6262" }, "headers": [], "isErrorResponse": false, @@ -123029,7 +123055,7 @@ }, "parameters": [ { - "$id": "9218", + "$id": "9220", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123046,7 +123072,7 @@ "decorators": [] }, { - "$id": "9219", + "$id": "9221", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123063,13 +123089,13 @@ "decorators": [] }, { - "$id": "9220", + "$id": "9222", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9221", + "$id": "9223", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123085,13 +123111,13 @@ "decorators": [] }, { - "$id": "9222", + "$id": "9224", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9223", + "$id": "9225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123109,7 +123135,7 @@ ], "response": { "type": { - "$ref": "6260" + "$ref": "6262" } }, "isOverride": false, @@ -123118,21 +123144,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun" }, { - "$id": "9224", + "$id": "9226", "kind": "basic", "name": "modifyRun", "accessibility": "public", "apiVersions": [], "summary": "Modifies a run.", "operation": { - "$id": "9225", + "$id": "9227", "name": "modifyRun", "resourceName": "Runs", "summary": "Modifies a run.", "accessibility": "public", "parameters": [ { - "$id": "9226", + "$id": "9228", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123148,7 +123174,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.accept" }, { - "$id": "9227", + "$id": "9229", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123164,13 +123190,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.openAIBeta" }, { - "$id": "9228", + "$id": "9230", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9229", + "$id": "9231", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123188,13 +123214,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.thread_id" }, { - "$id": "9230", + "$id": "9232", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9231", + "$id": "9233", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123212,7 +123238,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.run_id" }, { - "$id": "9232", + "$id": "9234", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123229,12 +123255,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.contentType" }, { - "$id": "9233", + "$id": "9235", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6408" + "$ref": "6410" }, "isApiVersion": false, "contentTypes": [ @@ -123254,7 +123280,7 @@ 200 ], "bodyType": { - "$ref": "6260" + "$ref": "6262" }, "headers": [], "isErrorResponse": false, @@ -123277,7 +123303,7 @@ }, "parameters": [ { - "$id": "9234", + "$id": "9236", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123294,7 +123320,7 @@ "decorators": [] }, { - "$id": "9235", + "$id": "9237", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123311,13 +123337,13 @@ "decorators": [] }, { - "$id": "9236", + "$id": "9238", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9237", + "$id": "9239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123333,13 +123359,13 @@ "decorators": [] }, { - "$id": "9238", + "$id": "9240", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9239", + "$id": "9241", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123355,12 +123381,12 @@ "decorators": [] }, { - "$id": "9240", + "$id": "9242", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6408" + "$ref": "6410" }, "location": "Body", "isApiVersion": false, @@ -123372,7 +123398,7 @@ "decorators": [] }, { - "$id": "9241", + "$id": "9243", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123392,7 +123418,7 @@ ], "response": { "type": { - "$ref": "6260" + "$ref": "6262" } }, "isOverride": false, @@ -123401,21 +123427,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun" }, { - "$id": "9242", + "$id": "9244", "kind": "basic", "name": "cancelRun", "accessibility": "public", "apiVersions": [], "summary": "Cancels a run that is `in_progress`.", "operation": { - "$id": "9243", + "$id": "9245", "name": "cancelRun", "resourceName": "Runs", "summary": "Cancels a run that is `in_progress`.", "accessibility": "public", "parameters": [ { - "$id": "9244", + "$id": "9246", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123431,7 +123457,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.accept" }, { - "$id": "9245", + "$id": "9247", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123447,13 +123473,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.openAIBeta" }, { - "$id": "9246", + "$id": "9248", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9247", + "$id": "9249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123471,13 +123497,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.thread_id" }, { - "$id": "9248", + "$id": "9250", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9249", + "$id": "9251", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123501,7 +123527,7 @@ 200 ], "bodyType": { - "$ref": "6260" + "$ref": "6262" }, "headers": [], "isErrorResponse": false, @@ -123521,7 +123547,7 @@ }, "parameters": [ { - "$id": "9250", + "$id": "9252", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123538,7 +123564,7 @@ "decorators": [] }, { - "$id": "9251", + "$id": "9253", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123555,13 +123581,13 @@ "decorators": [] }, { - "$id": "9252", + "$id": "9254", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9253", + "$id": "9255", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123577,13 +123603,13 @@ "decorators": [] }, { - "$id": "9254", + "$id": "9256", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9255", + "$id": "9257", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123601,7 +123627,7 @@ ], "response": { "type": { - "$ref": "6260" + "$ref": "6262" } }, "isOverride": false, @@ -123610,21 +123636,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun" }, { - "$id": "9256", + "$id": "9258", "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": "9257", + "$id": "9259", "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": "9258", + "$id": "9260", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123640,7 +123666,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.accept" }, { - "$id": "9259", + "$id": "9261", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123656,13 +123682,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.openAIBeta" }, { - "$id": "9260", + "$id": "9262", "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": "9261", + "$id": "9263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123680,13 +123706,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.thread_id" }, { - "$id": "9262", + "$id": "9264", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9263", + "$id": "9265", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123704,7 +123730,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.run_id" }, { - "$id": "9264", + "$id": "9266", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123721,12 +123747,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.contentType" }, { - "$id": "9265", + "$id": "9267", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6410" + "$ref": "6412" }, "isApiVersion": false, "contentTypes": [ @@ -123746,7 +123772,7 @@ 200 ], "bodyType": { - "$ref": "6260" + "$ref": "6262" }, "headers": [], "isErrorResponse": false, @@ -123769,7 +123795,7 @@ }, "parameters": [ { - "$id": "9266", + "$id": "9268", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123786,7 +123812,7 @@ "decorators": [] }, { - "$id": "9267", + "$id": "9269", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123803,13 +123829,13 @@ "decorators": [] }, { - "$id": "9268", + "$id": "9270", "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": "9269", + "$id": "9271", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123825,13 +123851,13 @@ "decorators": [] }, { - "$id": "9270", + "$id": "9272", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9271", + "$id": "9273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123847,12 +123873,12 @@ "decorators": [] }, { - "$id": "9272", + "$id": "9274", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6410" + "$ref": "6412" }, "location": "Body", "isApiVersion": false, @@ -123864,7 +123890,7 @@ "decorators": [] }, { - "$id": "9273", + "$id": "9275", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123884,7 +123910,7 @@ ], "response": { "type": { - "$ref": "6260" + "$ref": "6262" } }, "isOverride": false, @@ -123893,21 +123919,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun" }, { - "$id": "9274", + "$id": "9276", "kind": "paging", "name": "listRunSteps", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of run steps belonging to a run.", "operation": { - "$id": "9275", + "$id": "9277", "name": "listRunSteps", "resourceName": "Runs", "summary": "Returns a list of run steps belonging to a run.", "accessibility": "public", "parameters": [ { - "$id": "9276", + "$id": "9278", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123923,7 +123949,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.accept" }, { - "$id": "9277", + "$id": "9279", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123939,13 +123965,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.openAIBeta" }, { - "$id": "9278", + "$id": "9280", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9279", + "$id": "9281", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123963,13 +123989,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.thread_id" }, { - "$id": "9280", + "$id": "9282", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9281", + "$id": "9283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123987,13 +124013,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.run_id" }, { - "$id": "9282", + "$id": "9284", "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": "9283", + "$id": "9285", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124008,7 +124034,7 @@ "readOnly": false }, { - "$id": "9284", + "$id": "9286", "kind": "query", "name": "order", "serializedName": "order", @@ -124025,13 +124051,13 @@ "readOnly": false }, { - "$id": "9285", + "$id": "9287", "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": "9286", + "$id": "9288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124046,13 +124072,13 @@ "readOnly": false }, { - "$id": "9287", + "$id": "9289", "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": "9288", + "$id": "9290", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124067,13 +124093,13 @@ "readOnly": false }, { - "$id": "9289", + "$id": "9291", "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": "9176" + "$ref": "9178" }, "isApiVersion": false, "explode": false, @@ -124091,7 +124117,7 @@ 200 ], "bodyType": { - "$ref": "6421" + "$ref": "6423" }, "headers": [], "isErrorResponse": false, @@ -124111,7 +124137,7 @@ }, "parameters": [ { - "$id": "9290", + "$id": "9292", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124128,7 +124154,7 @@ "decorators": [] }, { - "$id": "9291", + "$id": "9293", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124145,13 +124171,13 @@ "decorators": [] }, { - "$id": "9292", + "$id": "9294", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9293", + "$id": "9295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124167,13 +124193,13 @@ "decorators": [] }, { - "$id": "9294", + "$id": "9296", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9295", + "$id": "9297", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124189,13 +124215,13 @@ "decorators": [] }, { - "$id": "9296", + "$id": "9298", "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": "9297", + "$id": "9299", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124211,7 +124237,7 @@ "decorators": [] }, { - "$id": "9298", + "$id": "9300", "kind": "method", "name": "order", "serializedName": "order", @@ -124229,13 +124255,13 @@ "decorators": [] }, { - "$id": "9299", + "$id": "9301", "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": "9300", + "$id": "9302", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124251,13 +124277,13 @@ "decorators": [] }, { - "$id": "9301", + "$id": "9303", "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": "9302", + "$id": "9304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124273,13 +124299,13 @@ "decorators": [] }, { - "$id": "9303", + "$id": "9305", "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": "9176" + "$ref": "9178" }, "location": "Query", "isApiVersion": false, @@ -124293,7 +124319,7 @@ ], "response": { "type": { - "$ref": "6424" + "$ref": "6426" }, "resultSegments": [ "data" @@ -124309,7 +124335,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9285" + "$ref": "9287" }, "responseSegments": [ "last_id" @@ -124319,21 +124345,21 @@ } }, { - "$id": "9304", + "$id": "9306", "kind": "basic", "name": "getRunStep", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run step.", "operation": { - "$id": "9305", + "$id": "9307", "name": "getRunStep", "resourceName": "Runs", "summary": "Retrieves a run step.", "accessibility": "public", "parameters": [ { - "$id": "9306", + "$id": "9308", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124349,7 +124375,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.accept" }, { - "$id": "9307", + "$id": "9309", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124365,13 +124391,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.openAIBeta" }, { - "$id": "9308", + "$id": "9310", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9309", + "$id": "9311", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124389,13 +124415,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.thread_id" }, { - "$id": "9310", + "$id": "9312", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9311", + "$id": "9313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124413,13 +124439,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.run_id" }, { - "$id": "9312", + "$id": "9314", "kind": "path", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9313", + "$id": "9315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124437,13 +124463,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.step_id" }, { - "$id": "9314", + "$id": "9316", "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": "9176" + "$ref": "9178" }, "isApiVersion": false, "explode": false, @@ -124461,7 +124487,7 @@ 200 ], "bodyType": { - "$ref": "6425" + "$ref": "6427" }, "headers": [], "isErrorResponse": false, @@ -124481,7 +124507,7 @@ }, "parameters": [ { - "$id": "9315", + "$id": "9317", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124498,7 +124524,7 @@ "decorators": [] }, { - "$id": "9316", + "$id": "9318", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124515,13 +124541,13 @@ "decorators": [] }, { - "$id": "9317", + "$id": "9319", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9318", + "$id": "9320", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124537,13 +124563,13 @@ "decorators": [] }, { - "$id": "9319", + "$id": "9321", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9320", + "$id": "9322", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124559,13 +124585,13 @@ "decorators": [] }, { - "$id": "9321", + "$id": "9323", "kind": "method", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9322", + "$id": "9324", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124581,13 +124607,13 @@ "decorators": [] }, { - "$id": "9323", + "$id": "9325", "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": "9176" + "$ref": "9178" }, "location": "Query", "isApiVersion": false, @@ -124601,7 +124627,7 @@ ], "response": { "type": { - "$ref": "6425" + "$ref": "6427" } }, "isOverride": false, @@ -124612,13 +124638,13 @@ ], "parameters": [ { - "$id": "9324", + "$id": "9326", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9325", + "$id": "9327", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -124629,7 +124655,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9326", + "$id": "9328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -124647,31 +124673,31 @@ "crossLanguageDefinitionId": "OpenAI.Runs", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9327", + "$id": "9329", "kind": "client", "name": "Threads", "namespace": "OpenAI", "methods": [ { - "$id": "9328", + "$id": "9330", "kind": "basic", "name": "createThread", "accessibility": "public", "apiVersions": [], "summary": "Create a thread.", "operation": { - "$id": "9329", + "$id": "9331", "name": "createThread", "resourceName": "Threads", "summary": "Create a thread.", "accessibility": "public", "parameters": [ { - "$id": "9330", + "$id": "9332", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124687,7 +124713,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.accept" }, { - "$id": "9331", + "$id": "9333", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124703,7 +124729,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.openAIBeta" }, { - "$id": "9332", + "$id": "9334", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -124720,12 +124746,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.contentType" }, { - "$id": "9333", + "$id": "9335", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6198" + "$ref": "6200" }, "isApiVersion": false, "contentTypes": [ @@ -124745,7 +124771,7 @@ 200 ], "bodyType": { - "$ref": "6574" + "$ref": "6576" }, "headers": [], "isErrorResponse": false, @@ -124768,7 +124794,7 @@ }, "parameters": [ { - "$id": "9334", + "$id": "9336", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124785,7 +124811,7 @@ "decorators": [] }, { - "$id": "9335", + "$id": "9337", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124802,12 +124828,12 @@ "decorators": [] }, { - "$id": "9336", + "$id": "9338", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6198" + "$ref": "6200" }, "location": "Body", "isApiVersion": false, @@ -124819,7 +124845,7 @@ "decorators": [] }, { - "$id": "9337", + "$id": "9339", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -124839,7 +124865,7 @@ ], "response": { "type": { - "$ref": "6574" + "$ref": "6576" } }, "isOverride": false, @@ -124848,21 +124874,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread" }, { - "$id": "9338", + "$id": "9340", "kind": "basic", "name": "getThread", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a thread.", "operation": { - "$id": "9339", + "$id": "9341", "name": "getThread", "resourceName": "Threads", "summary": "Retrieves a thread.", "accessibility": "public", "parameters": [ { - "$id": "9340", + "$id": "9342", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124878,7 +124904,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.accept" }, { - "$id": "9341", + "$id": "9343", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124894,13 +124920,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.openAIBeta" }, { - "$id": "9342", + "$id": "9344", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9343", + "$id": "9345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124924,7 +124950,7 @@ 200 ], "bodyType": { - "$ref": "6574" + "$ref": "6576" }, "headers": [], "isErrorResponse": false, @@ -124944,7 +124970,7 @@ }, "parameters": [ { - "$id": "9344", + "$id": "9346", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124961,7 +124987,7 @@ "decorators": [] }, { - "$id": "9345", + "$id": "9347", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124978,13 +125004,13 @@ "decorators": [] }, { - "$id": "9346", + "$id": "9348", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9347", + "$id": "9349", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125002,7 +125028,7 @@ ], "response": { "type": { - "$ref": "6574" + "$ref": "6576" } }, "isOverride": false, @@ -125011,21 +125037,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread" }, { - "$id": "9348", + "$id": "9350", "kind": "basic", "name": "modifyThread", "accessibility": "public", "apiVersions": [], "summary": "Modifies a thread.", "operation": { - "$id": "9349", + "$id": "9351", "name": "modifyThread", "resourceName": "Threads", "summary": "Modifies a thread.", "accessibility": "public", "parameters": [ { - "$id": "9350", + "$id": "9352", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125041,7 +125067,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.accept" }, { - "$id": "9351", + "$id": "9353", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125057,13 +125083,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.openAIBeta" }, { - "$id": "9352", + "$id": "9354", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9353", + "$id": "9355", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125081,7 +125107,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.thread_id" }, { - "$id": "9354", + "$id": "9356", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -125098,12 +125124,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.contentType" }, { - "$id": "9355", + "$id": "9357", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6591" + "$ref": "6593" }, "isApiVersion": false, "contentTypes": [ @@ -125123,7 +125149,7 @@ 200 ], "bodyType": { - "$ref": "6574" + "$ref": "6576" }, "headers": [], "isErrorResponse": false, @@ -125146,7 +125172,7 @@ }, "parameters": [ { - "$id": "9356", + "$id": "9358", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125163,7 +125189,7 @@ "decorators": [] }, { - "$id": "9357", + "$id": "9359", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125180,13 +125206,13 @@ "decorators": [] }, { - "$id": "9358", + "$id": "9360", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9359", + "$id": "9361", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125202,12 +125228,12 @@ "decorators": [] }, { - "$id": "9360", + "$id": "9362", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6591" + "$ref": "6593" }, "location": "Body", "isApiVersion": false, @@ -125219,7 +125245,7 @@ "decorators": [] }, { - "$id": "9361", + "$id": "9363", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -125239,7 +125265,7 @@ ], "response": { "type": { - "$ref": "6574" + "$ref": "6576" } }, "isOverride": false, @@ -125248,21 +125274,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread" }, { - "$id": "9362", + "$id": "9364", "kind": "basic", "name": "deleteThread", "accessibility": "public", "apiVersions": [], "summary": "Delete a thread.", "operation": { - "$id": "9363", + "$id": "9365", "name": "deleteThread", "resourceName": "Threads", "summary": "Delete a thread.", "accessibility": "public", "parameters": [ { - "$id": "9364", + "$id": "9366", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125278,7 +125304,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.accept" }, { - "$id": "9365", + "$id": "9367", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125294,13 +125320,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.openAIBeta" }, { - "$id": "9366", + "$id": "9368", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9367", + "$id": "9369", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125324,7 +125350,7 @@ 200 ], "bodyType": { - "$ref": "6600" + "$ref": "6602" }, "headers": [], "isErrorResponse": false, @@ -125344,7 +125370,7 @@ }, "parameters": [ { - "$id": "9368", + "$id": "9370", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125361,7 +125387,7 @@ "decorators": [] }, { - "$id": "9369", + "$id": "9371", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -125378,13 +125404,13 @@ "decorators": [] }, { - "$id": "9370", + "$id": "9372", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9371", + "$id": "9373", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125402,7 +125428,7 @@ ], "response": { "type": { - "$ref": "6600" + "$ref": "6602" } }, "isOverride": false, @@ -125413,13 +125439,13 @@ ], "parameters": [ { - "$id": "9372", + "$id": "9374", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9373", + "$id": "9375", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -125430,7 +125456,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9374", + "$id": "9376", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -125448,31 +125474,31 @@ "crossLanguageDefinitionId": "OpenAI.Threads", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9375", + "$id": "9377", "kind": "client", "name": "VectorStores", "namespace": "OpenAI", "methods": [ { - "$id": "9376", + "$id": "9378", "kind": "paging", "name": "GetVectorStores", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector stores.", "operation": { - "$id": "9377", + "$id": "9379", "name": "GetVectorStores", "resourceName": "VectorStores", "summary": "Returns a list of vector stores.", "accessibility": "public", "parameters": [ { - "$id": "9378", + "$id": "9380", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125488,13 +125514,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStores.accept" }, { - "$id": "9379", + "$id": "9381", "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": "9380", + "$id": "9382", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125509,7 +125535,7 @@ "readOnly": false }, { - "$id": "9381", + "$id": "9383", "kind": "query", "name": "order", "serializedName": "order", @@ -125526,13 +125552,13 @@ "readOnly": false }, { - "$id": "9382", + "$id": "9384", "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": "9383", + "$id": "9385", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125547,13 +125573,13 @@ "readOnly": false }, { - "$id": "9384", + "$id": "9386", "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": "9385", + "$id": "9387", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125574,7 +125600,7 @@ 200 ], "bodyType": { - "$ref": "6606" + "$ref": "6608" }, "headers": [], "isErrorResponse": false, @@ -125594,7 +125620,7 @@ }, "parameters": [ { - "$id": "9386", + "$id": "9388", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125611,13 +125637,13 @@ "decorators": [] }, { - "$id": "9387", + "$id": "9389", "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": "9388", + "$id": "9390", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125633,7 +125659,7 @@ "decorators": [] }, { - "$id": "9389", + "$id": "9391", "kind": "method", "name": "order", "serializedName": "order", @@ -125651,13 +125677,13 @@ "decorators": [] }, { - "$id": "9390", + "$id": "9392", "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": "9391", + "$id": "9393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125673,13 +125699,13 @@ "decorators": [] }, { - "$id": "9392", + "$id": "9394", "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": "9393", + "$id": "9395", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125697,7 +125723,7 @@ ], "response": { "type": { - "$ref": "6609" + "$ref": "6611" }, "resultSegments": [ "data" @@ -125713,7 +125739,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9382" + "$ref": "9384" }, "responseSegments": [ "last_id" @@ -125723,21 +125749,21 @@ } }, { - "$id": "9394", + "$id": "9396", "kind": "basic", "name": "createVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Creates a vector store.", "operation": { - "$id": "9395", + "$id": "9397", "name": "createVectorStore", "resourceName": "VectorStores", "summary": "Creates a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9396", + "$id": "9398", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125753,7 +125779,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.accept" }, { - "$id": "9397", + "$id": "9399", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -125770,12 +125796,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.contentType" }, { - "$id": "9398", + "$id": "9400", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6658" + "$ref": "6660" }, "isApiVersion": false, "contentTypes": [ @@ -125795,7 +125821,7 @@ 200 ], "bodyType": { - "$ref": "6610" + "$ref": "6612" }, "headers": [], "isErrorResponse": false, @@ -125818,7 +125844,7 @@ }, "parameters": [ { - "$id": "9399", + "$id": "9401", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125835,12 +125861,12 @@ "decorators": [] }, { - "$id": "9400", + "$id": "9402", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6658" + "$ref": "6660" }, "location": "Body", "isApiVersion": false, @@ -125852,7 +125878,7 @@ "decorators": [] }, { - "$id": "9401", + "$id": "9403", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -125872,7 +125898,7 @@ ], "response": { "type": { - "$ref": "6610" + "$ref": "6612" } }, "isOverride": false, @@ -125881,21 +125907,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore" }, { - "$id": "9402", + "$id": "9404", "kind": "basic", "name": "getVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store.", "operation": { - "$id": "9403", + "$id": "9405", "name": "getVectorStore", "resourceName": "VectorStores", "summary": "Retrieves a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9404", + "$id": "9406", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125911,13 +125937,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore.accept" }, { - "$id": "9405", + "$id": "9407", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9406", + "$id": "9408", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125941,7 +125967,7 @@ 200 ], "bodyType": { - "$ref": "6610" + "$ref": "6612" }, "headers": [], "isErrorResponse": false, @@ -125961,7 +125987,7 @@ }, "parameters": [ { - "$id": "9407", + "$id": "9409", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125978,13 +126004,13 @@ "decorators": [] }, { - "$id": "9408", + "$id": "9410", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9409", + "$id": "9411", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126002,7 +126028,7 @@ ], "response": { "type": { - "$ref": "6610" + "$ref": "6612" } }, "isOverride": false, @@ -126011,21 +126037,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore" }, { - "$id": "9410", + "$id": "9412", "kind": "basic", "name": "modifyVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Modifies a vector store.", "operation": { - "$id": "9411", + "$id": "9413", "name": "modifyVectorStore", "resourceName": "VectorStores", "summary": "Modifies a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9412", + "$id": "9414", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126041,13 +126067,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.accept" }, { - "$id": "9413", + "$id": "9415", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9414", + "$id": "9416", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126065,7 +126091,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.vector_store_id" }, { - "$id": "9415", + "$id": "9417", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -126082,12 +126108,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.contentType" }, { - "$id": "9416", + "$id": "9418", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6666" + "$ref": "6668" }, "isApiVersion": false, "contentTypes": [ @@ -126107,7 +126133,7 @@ 200 ], "bodyType": { - "$ref": "6610" + "$ref": "6612" }, "headers": [], "isErrorResponse": false, @@ -126130,7 +126156,7 @@ }, "parameters": [ { - "$id": "9417", + "$id": "9419", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126147,13 +126173,13 @@ "decorators": [] }, { - "$id": "9418", + "$id": "9420", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9419", + "$id": "9421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126169,12 +126195,12 @@ "decorators": [] }, { - "$id": "9420", + "$id": "9422", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6666" + "$ref": "6668" }, "location": "Body", "isApiVersion": false, @@ -126186,7 +126212,7 @@ "decorators": [] }, { - "$id": "9421", + "$id": "9423", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -126206,7 +126232,7 @@ ], "response": { "type": { - "$ref": "6610" + "$ref": "6612" } }, "isOverride": false, @@ -126215,21 +126241,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore" }, { - "$id": "9422", + "$id": "9424", "kind": "basic", "name": "deleteVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Delete a vector store.", "operation": { - "$id": "9423", + "$id": "9425", "name": "deleteVectorStore", "resourceName": "VectorStores", "summary": "Delete a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9424", + "$id": "9426", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126245,13 +126271,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore.accept" }, { - "$id": "9425", + "$id": "9427", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9426", + "$id": "9428", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126275,7 +126301,7 @@ 200 ], "bodyType": { - "$ref": "6673" + "$ref": "6675" }, "headers": [], "isErrorResponse": false, @@ -126295,7 +126321,7 @@ }, "parameters": [ { - "$id": "9427", + "$id": "9429", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126312,13 +126338,13 @@ "decorators": [] }, { - "$id": "9428", + "$id": "9430", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9429", + "$id": "9431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126336,7 +126362,7 @@ ], "response": { "type": { - "$ref": "6673" + "$ref": "6675" } }, "isOverride": false, @@ -126345,21 +126371,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore" }, { - "$id": "9430", + "$id": "9432", "kind": "basic", "name": "AddFileBatchToVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Create a vector store file batch.", "operation": { - "$id": "9431", + "$id": "9433", "name": "AddFileBatchToVectorStore", "resourceName": "VectorStores", "summary": "Create a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9432", + "$id": "9434", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126375,13 +126401,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.accept" }, { - "$id": "9433", + "$id": "9435", "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": "9434", + "$id": "9436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126399,7 +126425,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.vector_store_id" }, { - "$id": "9435", + "$id": "9437", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -126416,12 +126442,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.contentType" }, { - "$id": "9436", + "$id": "9438", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6679" + "$ref": "6681" }, "isApiVersion": false, "contentTypes": [ @@ -126441,7 +126467,7 @@ 200 ], "bodyType": { - "$ref": "6684" + "$ref": "6686" }, "headers": [], "isErrorResponse": false, @@ -126464,7 +126490,7 @@ }, "parameters": [ { - "$id": "9437", + "$id": "9439", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126481,13 +126507,13 @@ "decorators": [] }, { - "$id": "9438", + "$id": "9440", "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": "9439", + "$id": "9441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126503,12 +126529,12 @@ "decorators": [] }, { - "$id": "9440", + "$id": "9442", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6679" + "$ref": "6681" }, "location": "Body", "isApiVersion": false, @@ -126520,7 +126546,7 @@ "decorators": [] }, { - "$id": "9441", + "$id": "9443", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -126540,7 +126566,7 @@ ], "response": { "type": { - "$ref": "6684" + "$ref": "6686" } }, "isOverride": false, @@ -126549,21 +126575,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch" }, { - "$id": "9442", + "$id": "9444", "kind": "basic", "name": "getVectorStoreFileBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file batch.", "operation": { - "$id": "9443", + "$id": "9445", "name": "getVectorStoreFileBatch", "resourceName": "VectorStores", "summary": "Retrieves a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9444", + "$id": "9446", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126579,13 +126605,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.accept" }, { - "$id": "9445", + "$id": "9447", "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": "9446", + "$id": "9448", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126603,13 +126629,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.vector_store_id" }, { - "$id": "9447", + "$id": "9449", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9448", + "$id": "9450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126633,7 +126659,7 @@ 200 ], "bodyType": { - "$ref": "6684" + "$ref": "6686" }, "headers": [], "isErrorResponse": false, @@ -126653,7 +126679,7 @@ }, "parameters": [ { - "$id": "9449", + "$id": "9451", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126670,13 +126696,13 @@ "decorators": [] }, { - "$id": "9450", + "$id": "9452", "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": "9451", + "$id": "9453", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126692,13 +126718,13 @@ "decorators": [] }, { - "$id": "9452", + "$id": "9454", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9453", + "$id": "9455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126716,7 +126742,7 @@ ], "response": { "type": { - "$ref": "6684" + "$ref": "6686" } }, "isOverride": false, @@ -126725,21 +126751,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch" }, { - "$id": "9454", + "$id": "9456", "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": "9455", + "$id": "9457", "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": "9456", + "$id": "9458", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126755,13 +126781,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.accept" }, { - "$id": "9457", + "$id": "9459", "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": "9458", + "$id": "9460", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126779,13 +126805,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.vector_store_id" }, { - "$id": "9459", + "$id": "9461", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9460", + "$id": "9462", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126809,7 +126835,7 @@ 200 ], "bodyType": { - "$ref": "6684" + "$ref": "6686" }, "headers": [], "isErrorResponse": false, @@ -126829,7 +126855,7 @@ }, "parameters": [ { - "$id": "9461", + "$id": "9463", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126846,13 +126872,13 @@ "decorators": [] }, { - "$id": "9462", + "$id": "9464", "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": "9463", + "$id": "9465", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126868,13 +126894,13 @@ "decorators": [] }, { - "$id": "9464", + "$id": "9466", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9465", + "$id": "9467", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126892,7 +126918,7 @@ ], "response": { "type": { - "$ref": "6684" + "$ref": "6686" } }, "isOverride": false, @@ -126901,21 +126927,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch" }, { - "$id": "9466", + "$id": "9468", "kind": "paging", "name": "GetVectorStoreFilesInBatch", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files in a batch.", "operation": { - "$id": "9467", + "$id": "9469", "name": "GetVectorStoreFilesInBatch", "resourceName": "VectorStores", "summary": "Returns a list of vector store files in a batch.", "accessibility": "public", "parameters": [ { - "$id": "9468", + "$id": "9470", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126931,13 +126957,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.accept" }, { - "$id": "9469", + "$id": "9471", "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": "9470", + "$id": "9472", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126955,13 +126981,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.vector_store_id" }, { - "$id": "9471", + "$id": "9473", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9472", + "$id": "9474", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126979,13 +127005,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.batch_id" }, { - "$id": "9473", + "$id": "9475", "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": "9474", + "$id": "9476", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127000,7 +127026,7 @@ "readOnly": false }, { - "$id": "9475", + "$id": "9477", "kind": "query", "name": "order", "serializedName": "order", @@ -127017,13 +127043,13 @@ "readOnly": false }, { - "$id": "9476", + "$id": "9478", "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": "9477", + "$id": "9479", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127038,13 +127064,13 @@ "readOnly": false }, { - "$id": "9478", + "$id": "9480", "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": "9479", + "$id": "9481", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127059,7 +127085,7 @@ "readOnly": false }, { - "$id": "9480", + "$id": "9482", "kind": "query", "name": "filter", "serializedName": "filter", @@ -127082,7 +127108,7 @@ 200 ], "bodyType": { - "$ref": "6706" + "$ref": "6708" }, "headers": [], "isErrorResponse": false, @@ -127102,7 +127128,7 @@ }, "parameters": [ { - "$id": "9481", + "$id": "9483", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127119,13 +127145,13 @@ "decorators": [] }, { - "$id": "9482", + "$id": "9484", "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": "9483", + "$id": "9485", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127141,13 +127167,13 @@ "decorators": [] }, { - "$id": "9484", + "$id": "9486", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9485", + "$id": "9487", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127163,13 +127189,13 @@ "decorators": [] }, { - "$id": "9486", + "$id": "9488", "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": "9487", + "$id": "9489", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127185,7 +127211,7 @@ "decorators": [] }, { - "$id": "9488", + "$id": "9490", "kind": "method", "name": "order", "serializedName": "order", @@ -127203,13 +127229,13 @@ "decorators": [] }, { - "$id": "9489", + "$id": "9491", "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": "9490", + "$id": "9492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127225,13 +127251,13 @@ "decorators": [] }, { - "$id": "9491", + "$id": "9493", "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": "9492", + "$id": "9494", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127247,7 +127273,7 @@ "decorators": [] }, { - "$id": "9493", + "$id": "9495", "kind": "method", "name": "filter", "serializedName": "filter", @@ -127267,7 +127293,7 @@ ], "response": { "type": { - "$ref": "6709" + "$ref": "6711" }, "resultSegments": [ "data" @@ -127283,7 +127309,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9476" + "$ref": "9478" }, "responseSegments": [ "last_id" @@ -127293,21 +127319,21 @@ } }, { - "$id": "9494", + "$id": "9496", "kind": "paging", "name": "listVectorStoreFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files.", "operation": { - "$id": "9495", + "$id": "9497", "name": "listVectorStoreFiles", "resourceName": "VectorStores", "summary": "Returns a list of vector store files.", "accessibility": "public", "parameters": [ { - "$id": "9496", + "$id": "9498", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127323,13 +127349,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.accept" }, { - "$id": "9497", + "$id": "9499", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9498", + "$id": "9500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127347,13 +127373,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.vector_store_id" }, { - "$id": "9499", + "$id": "9501", "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": "9500", + "$id": "9502", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127368,7 +127394,7 @@ "readOnly": false }, { - "$id": "9501", + "$id": "9503", "kind": "query", "name": "order", "serializedName": "order", @@ -127385,13 +127411,13 @@ "readOnly": false }, { - "$id": "9502", + "$id": "9504", "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": "9503", + "$id": "9505", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127406,13 +127432,13 @@ "readOnly": false }, { - "$id": "9504", + "$id": "9506", "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": "9505", + "$id": "9507", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127427,7 +127453,7 @@ "readOnly": false }, { - "$id": "9506", + "$id": "9508", "kind": "query", "name": "filter", "serializedName": "filter", @@ -127450,7 +127476,7 @@ 200 ], "bodyType": { - "$ref": "6706" + "$ref": "6708" }, "headers": [], "isErrorResponse": false, @@ -127470,7 +127496,7 @@ }, "parameters": [ { - "$id": "9507", + "$id": "9509", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127487,13 +127513,13 @@ "decorators": [] }, { - "$id": "9508", + "$id": "9510", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9509", + "$id": "9511", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127509,13 +127535,13 @@ "decorators": [] }, { - "$id": "9510", + "$id": "9512", "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": "9511", + "$id": "9513", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127531,7 +127557,7 @@ "decorators": [] }, { - "$id": "9512", + "$id": "9514", "kind": "method", "name": "order", "serializedName": "order", @@ -127549,13 +127575,13 @@ "decorators": [] }, { - "$id": "9513", + "$id": "9515", "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": "9514", + "$id": "9516", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127571,13 +127597,13 @@ "decorators": [] }, { - "$id": "9515", + "$id": "9517", "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": "9516", + "$id": "9518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127593,7 +127619,7 @@ "decorators": [] }, { - "$id": "9517", + "$id": "9519", "kind": "method", "name": "filter", "serializedName": "filter", @@ -127613,7 +127639,7 @@ ], "response": { "type": { - "$ref": "6709" + "$ref": "6711" }, "resultSegments": [ "data" @@ -127629,7 +127655,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9502" + "$ref": "9504" }, "responseSegments": [ "last_id" @@ -127639,21 +127665,21 @@ } }, { - "$id": "9518", + "$id": "9520", "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": "9519", + "$id": "9521", "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": "9520", + "$id": "9522", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127669,13 +127695,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.accept" }, { - "$id": "9521", + "$id": "9523", "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": "9522", + "$id": "9524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127693,7 +127719,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.vector_store_id" }, { - "$id": "9523", + "$id": "9525", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -127710,12 +127736,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.contentType" }, { - "$id": "9524", + "$id": "9526", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6750" + "$ref": "6752" }, "isApiVersion": false, "contentTypes": [ @@ -127735,7 +127761,7 @@ 200 ], "bodyType": { - "$ref": "6710" + "$ref": "6712" }, "headers": [], "isErrorResponse": false, @@ -127758,7 +127784,7 @@ }, "parameters": [ { - "$id": "9525", + "$id": "9527", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127775,13 +127801,13 @@ "decorators": [] }, { - "$id": "9526", + "$id": "9528", "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": "9527", + "$id": "9529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127797,12 +127823,12 @@ "decorators": [] }, { - "$id": "9528", + "$id": "9530", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6750" + "$ref": "6752" }, "location": "Body", "isApiVersion": false, @@ -127814,7 +127840,7 @@ "decorators": [] }, { - "$id": "9529", + "$id": "9531", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127834,7 +127860,7 @@ ], "response": { "type": { - "$ref": "6710" + "$ref": "6712" } }, "isOverride": false, @@ -127843,21 +127869,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile" }, { - "$id": "9530", + "$id": "9532", "kind": "basic", "name": "getVectorStoreFile", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file.", "operation": { - "$id": "9531", + "$id": "9533", "name": "getVectorStoreFile", "resourceName": "VectorStores", "summary": "Retrieves a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9532", + "$id": "9534", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127873,13 +127899,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.accept" }, { - "$id": "9533", + "$id": "9535", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9534", + "$id": "9536", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127897,13 +127923,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.vector_store_id" }, { - "$id": "9535", + "$id": "9537", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9536", + "$id": "9538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127927,7 +127953,7 @@ 200 ], "bodyType": { - "$ref": "6710" + "$ref": "6712" }, "headers": [], "isErrorResponse": false, @@ -127947,7 +127973,7 @@ }, "parameters": [ { - "$id": "9537", + "$id": "9539", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127964,13 +127990,13 @@ "decorators": [] }, { - "$id": "9538", + "$id": "9540", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9539", + "$id": "9541", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127986,13 +128012,13 @@ "decorators": [] }, { - "$id": "9540", + "$id": "9542", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9541", + "$id": "9543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128010,7 +128036,7 @@ ], "response": { "type": { - "$ref": "6710" + "$ref": "6712" } }, "isOverride": false, @@ -128019,21 +128045,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile" }, { - "$id": "9542", + "$id": "9544", "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": "9543", + "$id": "9545", "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": "9544", + "$id": "9546", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128049,13 +128075,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.accept" }, { - "$id": "9545", + "$id": "9547", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9546", + "$id": "9548", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128073,13 +128099,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.vector_store_id" }, { - "$id": "9547", + "$id": "9549", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9548", + "$id": "9550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128103,7 +128129,7 @@ 200 ], "bodyType": { - "$ref": "6756" + "$ref": "6758" }, "headers": [], "isErrorResponse": false, @@ -128123,7 +128149,7 @@ }, "parameters": [ { - "$id": "9549", + "$id": "9551", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128140,13 +128166,13 @@ "decorators": [] }, { - "$id": "9550", + "$id": "9552", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9551", + "$id": "9553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128162,13 +128188,13 @@ "decorators": [] }, { - "$id": "9552", + "$id": "9554", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9553", + "$id": "9555", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128186,7 +128212,7 @@ ], "response": { "type": { - "$ref": "6756" + "$ref": "6758" } }, "isOverride": false, @@ -128195,27 +128221,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile" }, { - "$id": "9554", + "$id": "9556", "kind": "basic", "name": "updateVectorStoreFileAttributes", "accessibility": "public", "apiVersions": [], "summary": "Update the attributes of a vector store file.", "operation": { - "$id": "9555", + "$id": "9557", "name": "updateVectorStoreFileAttributes", "resourceName": "VectorStores", "summary": "Update the attributes of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9556", + "$id": "9558", "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": "9557", + "$id": "9559", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128233,13 +128259,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.vector_store_id" }, { - "$id": "9558", + "$id": "9560", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9559", + "$id": "9561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128257,7 +128283,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.file_id" }, { - "$id": "9560", + "$id": "9562", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -128274,7 +128300,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.contentType" }, { - "$id": "9561", + "$id": "9563", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128290,12 +128316,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.accept" }, { - "$id": "9562", + "$id": "9564", "kind": "body", "name": "updateVectorStoreFileAttributesRequest", "serializedName": "updateVectorStoreFileAttributesRequest", "type": { - "$ref": "6762" + "$ref": "6764" }, "isApiVersion": false, "contentTypes": [ @@ -128315,7 +128341,7 @@ 200 ], "bodyType": { - "$ref": "6710" + "$ref": "6712" }, "headers": [], "isErrorResponse": false, @@ -128338,13 +128364,13 @@ }, "parameters": [ { - "$id": "9563", + "$id": "9565", "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": "9564", + "$id": "9566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128360,13 +128386,13 @@ "decorators": [] }, { - "$id": "9565", + "$id": "9567", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9566", + "$id": "9568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128382,12 +128408,12 @@ "decorators": [] }, { - "$id": "9567", + "$id": "9569", "kind": "method", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "6764" + "$ref": "6766" }, "location": "Body", "isApiVersion": false, @@ -128399,7 +128425,7 @@ "decorators": [] }, { - "$id": "9568", + "$id": "9570", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -128417,7 +128443,7 @@ "decorators": [] }, { - "$id": "9569", + "$id": "9571", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128436,7 +128462,7 @@ ], "response": { "type": { - "$ref": "6710" + "$ref": "6712" } }, "isOverride": false, @@ -128445,27 +128471,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes" }, { - "$id": "9570", + "$id": "9572", "kind": "basic", "name": "retrieveVectorStoreFileContent", "accessibility": "public", "apiVersions": [], "summary": "Retrieves the content of a vector store file.", "operation": { - "$id": "9571", + "$id": "9573", "name": "retrieveVectorStoreFileContent", "resourceName": "VectorStores", "summary": "Retrieves the content of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9572", + "$id": "9574", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9573", + "$id": "9575", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128483,13 +128509,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.vector_store_id" }, { - "$id": "9574", + "$id": "9576", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9575", + "$id": "9577", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128507,7 +128533,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.file_id" }, { - "$id": "9576", + "$id": "9578", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128529,7 +128555,7 @@ 200 ], "bodyType": { - "$ref": "6765" + "$ref": "6767" }, "headers": [], "isErrorResponse": false, @@ -128549,13 +128575,13 @@ }, "parameters": [ { - "$id": "9577", + "$id": "9579", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9578", + "$id": "9580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128571,13 +128597,13 @@ "decorators": [] }, { - "$id": "9579", + "$id": "9581", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9580", + "$id": "9582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128593,7 +128619,7 @@ "decorators": [] }, { - "$id": "9581", + "$id": "9583", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128612,7 +128638,7 @@ ], "response": { "type": { - "$ref": "6765" + "$ref": "6767" } }, "isOverride": false, @@ -128621,27 +128647,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent" }, { - "$id": "9582", + "$id": "9584", "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": "9583", + "$id": "9585", "name": "searchVectorStore", "resourceName": "VectorStores", "summary": "Searches a vector store for relevant chunks based on a query and file attributes filter.", "accessibility": "public", "parameters": [ { - "$id": "9584", + "$id": "9586", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9585", + "$id": "9587", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128659,7 +128685,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.vector_store_id" }, { - "$id": "9586", + "$id": "9588", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -128676,7 +128702,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.contentType" }, { - "$id": "9587", + "$id": "9589", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128692,12 +128718,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.accept" }, { - "$id": "9588", + "$id": "9590", "kind": "body", "name": "vectorStoreSearchRequest", "serializedName": "vectorStoreSearchRequest", "type": { - "$ref": "6783" + "$ref": "6785" }, "isApiVersion": false, "contentTypes": [ @@ -128717,7 +128743,7 @@ 200 ], "bodyType": { - "$ref": "6794" + "$ref": "6796" }, "headers": [], "isErrorResponse": false, @@ -128740,13 +128766,13 @@ }, "parameters": [ { - "$id": "9589", + "$id": "9591", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9590", + "$id": "9592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128762,13 +128788,13 @@ "decorators": [] }, { - "$id": "9591", + "$id": "9593", "kind": "method", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$ref": "6785" + "$ref": "6787" }, "location": "Body", "isApiVersion": false, @@ -128780,13 +128806,13 @@ "decorators": [] }, { - "$id": "9592", + "$id": "9594", "kind": "method", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "9593", + "$id": "9595", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -128802,13 +128828,13 @@ "decorators": [] }, { - "$id": "9594", + "$id": "9596", "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": "9595", + "$id": "9597", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -128824,13 +128850,13 @@ "decorators": [] }, { - "$id": "9596", + "$id": "9598", "kind": "method", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$ref": "6792" + "$ref": "6794" }, "location": "Body", "isApiVersion": false, @@ -128842,13 +128868,13 @@ "decorators": [] }, { - "$id": "9597", + "$id": "9599", "kind": "method", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6779" + "$ref": "6781" }, "location": "Body", "isApiVersion": false, @@ -128860,7 +128886,7 @@ "decorators": [] }, { - "$id": "9598", + "$id": "9600", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -128878,7 +128904,7 @@ "decorators": [] }, { - "$id": "9599", + "$id": "9601", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128897,7 +128923,7 @@ ], "response": { "type": { - "$ref": "6794" + "$ref": "6796" } }, "isOverride": false, @@ -128908,13 +128934,13 @@ ], "parameters": [ { - "$id": "9600", + "$id": "9602", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9601", + "$id": "9603", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -128925,7 +128951,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9602", + "$id": "9604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -128943,31 +128969,31 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9603", + "$id": "9605", "kind": "client", "name": "Completions", "namespace": "OpenAI", "methods": [ { - "$id": "9604", + "$id": "9606", "kind": "basic", "name": "createCompletion", "accessibility": "public", "apiVersions": [], "summary": "Creates a completion for the provided prompt and parameters.", "operation": { - "$id": "9605", + "$id": "9607", "name": "createCompletion", "resourceName": "Completions", "summary": "Creates a completion for the provided prompt and parameters.", "accessibility": "public", "parameters": [ { - "$id": "9606", + "$id": "9608", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128983,7 +129009,7 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.accept" }, { - "$id": "9607", + "$id": "9609", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129000,12 +129026,12 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.contentType" }, { - "$id": "9608", + "$id": "9610", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6819" + "$ref": "6821" }, "isApiVersion": false, "contentTypes": [ @@ -129025,7 +129051,7 @@ 200 ], "bodyType": { - "$ref": "6869" + "$ref": "6871" }, "headers": [], "isErrorResponse": false, @@ -129048,7 +129074,7 @@ }, "parameters": [ { - "$id": "9609", + "$id": "9611", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129065,12 +129091,12 @@ "decorators": [] }, { - "$id": "9610", + "$id": "9612", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6819" + "$ref": "6821" }, "location": "Body", "isApiVersion": false, @@ -129082,7 +129108,7 @@ "decorators": [] }, { - "$id": "9611", + "$id": "9613", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129102,7 +129128,7 @@ ], "response": { "type": { - "$ref": "6869" + "$ref": "6871" } }, "isOverride": false, @@ -129113,13 +129139,13 @@ ], "parameters": [ { - "$id": "9612", + "$id": "9614", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9613", + "$id": "9615", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -129130,7 +129156,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9614", + "$id": "9616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -129148,31 +129174,31 @@ "crossLanguageDefinitionId": "OpenAI.Completions", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9615", + "$id": "9617", "kind": "client", "name": "Models", "namespace": "OpenAI", "methods": [ { - "$id": "9616", + "$id": "9618", "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": "9617", + "$id": "9619", "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": "9618", + "$id": "9620", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129194,7 +129220,7 @@ 200 ], "bodyType": { - "$ref": "6900" + "$ref": "6902" }, "headers": [], "isErrorResponse": false, @@ -129214,7 +129240,7 @@ }, "parameters": [ { - "$id": "9619", + "$id": "9621", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129233,7 +129259,7 @@ ], "response": { "type": { - "$ref": "6900" + "$ref": "6902" } }, "isOverride": false, @@ -129242,21 +129268,21 @@ "crossLanguageDefinitionId": "OpenAI.Models.listModels" }, { - "$id": "9620", + "$id": "9622", "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": "9621", + "$id": "9623", "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": "9622", + "$id": "9624", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129272,13 +129298,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel.accept" }, { - "$id": "9623", + "$id": "9625", "kind": "path", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9624", + "$id": "9626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129302,7 +129328,7 @@ 200 ], "bodyType": { - "$ref": "6904" + "$ref": "6906" }, "headers": [], "isErrorResponse": false, @@ -129322,7 +129348,7 @@ }, "parameters": [ { - "$id": "9625", + "$id": "9627", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129339,13 +129365,13 @@ "decorators": [] }, { - "$id": "9626", + "$id": "9628", "kind": "method", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9627", + "$id": "9629", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129363,7 +129389,7 @@ ], "response": { "type": { - "$ref": "6904" + "$ref": "6906" } }, "isOverride": false, @@ -129372,21 +129398,21 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel" }, { - "$id": "9628", + "$id": "9630", "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": "9629", + "$id": "9631", "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": "9630", + "$id": "9632", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129402,13 +129428,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.deleteModel.accept" }, { - "$id": "9631", + "$id": "9633", "kind": "path", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9632", + "$id": "9634", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129432,7 +129458,7 @@ 200 ], "bodyType": { - "$ref": "6913" + "$ref": "6915" }, "headers": [], "isErrorResponse": false, @@ -129452,7 +129478,7 @@ }, "parameters": [ { - "$id": "9633", + "$id": "9635", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129469,13 +129495,13 @@ "decorators": [] }, { - "$id": "9634", + "$id": "9636", "kind": "method", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9635", + "$id": "9637", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129493,7 +129519,7 @@ ], "response": { "type": { - "$ref": "6913" + "$ref": "6915" } }, "isOverride": false, @@ -129504,13 +129530,13 @@ ], "parameters": [ { - "$id": "9636", + "$id": "9638", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9637", + "$id": "9639", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -129521,7 +129547,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9638", + "$id": "9640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -129539,31 +129565,31 @@ "crossLanguageDefinitionId": "OpenAI.Models", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9639", + "$id": "9641", "kind": "client", "name": "Realtime", "namespace": "OpenAI", "methods": [ { - "$id": "9640", + "$id": "9642", "kind": "basic", "name": "startRealtimeSession", "accessibility": "public", "apiVersions": [], "summary": "Starts a real-time session for conversation or transcription.", "operation": { - "$id": "9641", + "$id": "9643", "name": "startRealtimeSession", "resourceName": "Realtime", "summary": "Starts a real-time session for conversation or transcription.", "accessibility": "public", "parameters": [ { - "$id": "9642", + "$id": "9644", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -129579,7 +129605,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.openAIBeta" }, { - "$id": "9643", + "$id": "9645", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129596,7 +129622,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.contentType" }, { - "$id": "9644", + "$id": "9646", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129612,16 +129638,16 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.accept" }, { - "$id": "9645", + "$id": "9647", "kind": "body", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$id": "9646", + "$id": "9648", "kind": "array", "name": "ArrayRealtimeClientEvent", "valueType": { - "$ref": "6919" + "$ref": "6921" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -129644,11 +129670,11 @@ 200 ], "bodyType": { - "$id": "9647", + "$id": "9649", "kind": "array", "name": "ArrayRealtimeServerEvent", "valueType": { - "$ref": "7216" + "$ref": "7218" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -129674,7 +129700,7 @@ }, "parameters": [ { - "$id": "9648", + "$id": "9650", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -129691,12 +129717,12 @@ "decorators": [] }, { - "$id": "9649", + "$id": "9651", "kind": "method", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$ref": "9646" + "$ref": "9648" }, "location": "Body", "isApiVersion": false, @@ -129708,7 +129734,7 @@ "decorators": [] }, { - "$id": "9650", + "$id": "9652", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129726,7 +129752,7 @@ "decorators": [] }, { - "$id": "9651", + "$id": "9653", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129745,7 +129771,7 @@ ], "response": { "type": { - "$ref": "9647" + "$ref": "9649" } }, "isOverride": false, @@ -129754,21 +129780,21 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession" }, { - "$id": "9652", + "$id": "9654", "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": "9653", + "$id": "9655", "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": "9654", + "$id": "9656", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129785,7 +129811,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.contentType" }, { - "$id": "9655", + "$id": "9657", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129801,12 +129827,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.accept" }, { - "$id": "9656", + "$id": "9658", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7700" + "$ref": "7702" }, "isApiVersion": false, "contentTypes": [ @@ -129826,7 +129852,7 @@ 200 ], "bodyType": { - "$ref": "7760" + "$ref": "7762" }, "headers": [], "isErrorResponse": false, @@ -129849,12 +129875,12 @@ }, "parameters": [ { - "$id": "9657", + "$id": "9659", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7700" + "$ref": "7702" }, "location": "Body", "isApiVersion": false, @@ -129866,7 +129892,7 @@ "decorators": [] }, { - "$id": "9658", + "$id": "9660", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129884,7 +129910,7 @@ "decorators": [] }, { - "$id": "9659", + "$id": "9661", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129903,7 +129929,7 @@ ], "response": { "type": { - "$ref": "7760" + "$ref": "7762" } }, "isOverride": false, @@ -129912,21 +129938,21 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken" }, { - "$id": "9660", + "$id": "9662", "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": "9661", + "$id": "9663", "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": "9662", + "$id": "9664", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129943,7 +129969,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.contentType" }, { - "$id": "9663", + "$id": "9665", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129959,12 +129985,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.accept" }, { - "$id": "9664", + "$id": "9666", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7179" + "$ref": "7181" }, "isApiVersion": false, "contentTypes": [ @@ -129984,7 +130010,7 @@ 200 ], "bodyType": { - "$ref": "7671" + "$ref": "7673" }, "headers": [], "isErrorResponse": false, @@ -130007,12 +130033,12 @@ }, "parameters": [ { - "$id": "9665", + "$id": "9667", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7179" + "$ref": "7181" }, "location": "Body", "isApiVersion": false, @@ -130024,7 +130050,7 @@ "decorators": [] }, { - "$id": "9666", + "$id": "9668", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130042,7 +130068,7 @@ "decorators": [] }, { - "$id": "9667", + "$id": "9669", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130061,7 +130087,7 @@ ], "response": { "type": { - "$ref": "7671" + "$ref": "7673" } }, "isOverride": false, @@ -130072,13 +130098,13 @@ ], "parameters": [ { - "$id": "9668", + "$id": "9670", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9669", + "$id": "9671", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130089,7 +130115,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9670", + "$id": "9672", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130107,31 +130133,31 @@ "crossLanguageDefinitionId": "OpenAI.Realtime", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9671", + "$id": "9673", "kind": "client", "name": "Uploads", "namespace": "OpenAI", "methods": [ { - "$id": "9672", + "$id": "9674", "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": "9673", + "$id": "9675", "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": "9674", + "$id": "9676", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130147,7 +130173,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.accept" }, { - "$id": "9675", + "$id": "9677", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -130164,12 +130190,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.contentType" }, { - "$id": "9676", + "$id": "9678", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7807" + "$ref": "7809" }, "isApiVersion": false, "contentTypes": [ @@ -130189,7 +130215,7 @@ 200 ], "bodyType": { - "$ref": "7815" + "$ref": "7817" }, "headers": [], "isErrorResponse": false, @@ -130212,7 +130238,7 @@ }, "parameters": [ { - "$id": "9677", + "$id": "9679", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130229,12 +130255,12 @@ "decorators": [] }, { - "$id": "9678", + "$id": "9680", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7807" + "$ref": "7809" }, "location": "Body", "isApiVersion": false, @@ -130246,7 +130272,7 @@ "decorators": [] }, { - "$id": "9679", + "$id": "9681", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130266,7 +130292,7 @@ ], "response": { "type": { - "$ref": "7815" + "$ref": "7817" } }, "isOverride": false, @@ -130275,21 +130301,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload" }, { - "$id": "9680", + "$id": "9682", "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": "9681", + "$id": "9683", "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": "9682", + "$id": "9684", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130305,7 +130331,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.accept" }, { - "$id": "9683", + "$id": "9685", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -130321,12 +130347,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.contentType" }, { - "$id": "9684", + "$id": "9686", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9685", + "$id": "9687", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130344,12 +130370,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.upload_id" }, { - "$id": "9686", + "$id": "9688", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7834" + "$ref": "7836" }, "isApiVersion": false, "contentTypes": [ @@ -130369,7 +130395,7 @@ 200 ], "bodyType": { - "$ref": "7837" + "$ref": "7839" }, "headers": [], "isErrorResponse": false, @@ -130392,7 +130418,7 @@ }, "parameters": [ { - "$id": "9687", + "$id": "9689", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130409,7 +130435,7 @@ "decorators": [] }, { - "$id": "9688", + "$id": "9690", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130426,12 +130452,12 @@ "decorators": [] }, { - "$id": "9689", + "$id": "9691", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9690", + "$id": "9692", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130447,12 +130473,12 @@ "decorators": [] }, { - "$id": "9691", + "$id": "9693", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7834" + "$ref": "7836" }, "location": "Body", "isApiVersion": false, @@ -130466,7 +130492,7 @@ ], "response": { "type": { - "$ref": "7837" + "$ref": "7839" } }, "isOverride": false, @@ -130475,21 +130501,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart" }, { - "$id": "9692", + "$id": "9694", "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": "9693", + "$id": "9695", "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": "9694", + "$id": "9696", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130505,12 +130531,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.accept" }, { - "$id": "9695", + "$id": "9697", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9696", + "$id": "9698", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130528,7 +130554,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.upload_id" }, { - "$id": "9697", + "$id": "9699", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -130545,12 +130571,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.contentType" }, { - "$id": "9698", + "$id": "9700", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7846" + "$ref": "7848" }, "isApiVersion": false, "contentTypes": [ @@ -130570,7 +130596,7 @@ 200 ], "bodyType": { - "$ref": "7815" + "$ref": "7817" }, "headers": [], "isErrorResponse": false, @@ -130593,7 +130619,7 @@ }, "parameters": [ { - "$id": "9699", + "$id": "9701", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130610,12 +130636,12 @@ "decorators": [] }, { - "$id": "9700", + "$id": "9702", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9701", + "$id": "9703", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130631,12 +130657,12 @@ "decorators": [] }, { - "$id": "9702", + "$id": "9704", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7846" + "$ref": "7848" }, "location": "Body", "isApiVersion": false, @@ -130648,7 +130674,7 @@ "decorators": [] }, { - "$id": "9703", + "$id": "9705", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -130668,7 +130694,7 @@ ], "response": { "type": { - "$ref": "7815" + "$ref": "7817" } }, "isOverride": false, @@ -130677,21 +130703,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload" }, { - "$id": "9704", + "$id": "9706", "kind": "basic", "name": "cancelUpload", "accessibility": "public", "apiVersions": [], "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "operation": { - "$id": "9705", + "$id": "9707", "name": "cancelUpload", "resourceName": "Uploads", "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "accessibility": "public", "parameters": [ { - "$id": "9706", + "$id": "9708", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -130707,12 +130733,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.cancelUpload.accept" }, { - "$id": "9707", + "$id": "9709", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9708", + "$id": "9710", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130736,7 +130762,7 @@ 200 ], "bodyType": { - "$ref": "7815" + "$ref": "7817" }, "headers": [], "isErrorResponse": false, @@ -130756,7 +130782,7 @@ }, "parameters": [ { - "$id": "9709", + "$id": "9711", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -130773,12 +130799,12 @@ "decorators": [] }, { - "$id": "9710", + "$id": "9712", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9711", + "$id": "9713", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130796,7 +130822,7 @@ ], "response": { "type": { - "$ref": "7815" + "$ref": "7817" } }, "isOverride": false, @@ -130807,13 +130833,13 @@ ], "parameters": [ { - "$id": "9712", + "$id": "9714", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9713", + "$id": "9715", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -130824,7 +130850,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9714", + "$id": "9716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -130842,17 +130868,17 @@ "crossLanguageDefinitionId": "OpenAI.Uploads", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9715", + "$id": "9717", "kind": "client", "name": "Conversations", "namespace": "OpenAI", "methods": [ { - "$id": "9716", + "$id": "9718", "kind": "paging", "name": "GetConversationItems", "accessibility": "public", @@ -130860,7 +130886,7 @@ "doc": "List all items for a conversation with the given ID.", "summary": "List items", "operation": { - "$id": "9717", + "$id": "9719", "name": "GetConversationItems", "resourceName": "OpenAI", "summary": "List items", @@ -130868,13 +130894,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9718", + "$id": "9720", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to list items for.", "type": { - "$id": "9719", + "$id": "9721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130892,13 +130918,13 @@ "crossLanguageDefinitionId": "OpenAI.listConversationItems.conversation_id" }, { - "$id": "9720", + "$id": "9722", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between\n1 and 100, and the default is 20.", "type": { - "$id": "9721", + "$id": "9723", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -130913,18 +130939,18 @@ "readOnly": false }, { - "$id": "9722", + "$id": "9724", "kind": "query", "name": "order", "serializedName": "order", "doc": "The order to return the input items in. Default is `desc`.\n- `asc`: Return the input items in ascending order.\n- `desc`: Return the input items in descending order.", "type": { - "$id": "9723", + "$id": "9725", "kind": "enum", "name": "ListConversationItemsRequestOrder", "crossLanguageDefinitionId": "OpenAI.listConversationItems.RequestOrder.anonymous", "valueType": { - "$id": "9724", + "$id": "9726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130932,28 +130958,28 @@ }, "values": [ { - "$id": "9725", + "$id": "9727", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "9724" + "$ref": "9726" }, "enumType": { - "$ref": "9723" + "$ref": "9725" }, "decorators": [] }, { - "$id": "9726", + "$id": "9728", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "9724" + "$ref": "9726" }, "enumType": { - "$ref": "9723" + "$ref": "9725" }, "decorators": [] } @@ -130973,13 +130999,13 @@ "readOnly": false }, { - "$id": "9727", + "$id": "9729", "kind": "query", "name": "after", "serializedName": "after", "doc": "An item ID to list items after, used in pagination.", "type": { - "$id": "9728", + "$id": "9730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -130994,22 +131020,22 @@ "readOnly": false }, { - "$id": "9729", + "$id": "9731", "kind": "query", "name": "include", "serializedName": "include", "doc": "Specify additional output data to include in the model response. Currently supported values are:\n- `web_search_call.action.sources`: Include the sources of the web search tool call.\n- `code_interpreter_call.outputs`: Includes the outputs of python code execution in code interpreter tool call items.\n- `computer_call_output.output.image_url`: Include image urls from the computer call output.\n- `file_search_call.results`: Include the search results of the file search tool call.\n- `message.input_image.image_url`: Include image urls from the input message.\n- `message.output_text.logprobs`: Include logprobs with assistant messages.\n- `reasoning.encrypted_content`: Includes an encrypted version of reasoning tokens in reasoning item outputs. This enables reasoning items to be used in multi-turn conversations when using the Responses API statelessly (like when the `store` parameter is set to `false`, or when an organization is enrolled in the zero data retention program).", "type": { - "$id": "9730", + "$id": "9732", "kind": "array", "name": "ArrayIncludeEnum", "valueType": { - "$id": "9731", + "$id": "9733", "kind": "enum", "name": "IncludeEnum", "crossLanguageDefinitionId": "OpenAI.IncludeEnum", "valueType": { - "$id": "9732", + "$id": "9734", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131017,106 +131043,106 @@ }, "values": [ { - "$id": "9733", + "$id": "9735", "kind": "enumvalue", "name": "file_search_call.results", "value": "file_search_call.results", "valueType": { - "$ref": "9732" + "$ref": "9734" }, "enumType": { - "$ref": "9731" + "$ref": "9733" }, "decorators": [] }, { - "$id": "9734", + "$id": "9736", "kind": "enumvalue", "name": "web_search_call.results", "value": "web_search_call.results", "valueType": { - "$ref": "9732" + "$ref": "9734" }, "enumType": { - "$ref": "9731" + "$ref": "9733" }, "decorators": [] }, { - "$id": "9735", + "$id": "9737", "kind": "enumvalue", "name": "web_search_call.action.sources", "value": "web_search_call.action.sources", "valueType": { - "$ref": "9732" + "$ref": "9734" }, "enumType": { - "$ref": "9731" + "$ref": "9733" }, "decorators": [] }, { - "$id": "9736", + "$id": "9738", "kind": "enumvalue", "name": "message.input_image.image_url", "value": "message.input_image.image_url", "valueType": { - "$ref": "9732" + "$ref": "9734" }, "enumType": { - "$ref": "9731" + "$ref": "9733" }, "decorators": [] }, { - "$id": "9737", + "$id": "9739", "kind": "enumvalue", "name": "computer_call_output.output.image_url", "value": "computer_call_output.output.image_url", "valueType": { - "$ref": "9732" + "$ref": "9734" }, "enumType": { - "$ref": "9731" + "$ref": "9733" }, "decorators": [] }, { - "$id": "9738", + "$id": "9740", "kind": "enumvalue", "name": "code_interpreter_call.outputs", "value": "code_interpreter_call.outputs", "valueType": { - "$ref": "9732" + "$ref": "9734" }, "enumType": { - "$ref": "9731" + "$ref": "9733" }, "decorators": [] }, { - "$id": "9739", + "$id": "9741", "kind": "enumvalue", "name": "reasoning.encrypted_content", "value": "reasoning.encrypted_content", "valueType": { - "$ref": "9732" + "$ref": "9734" }, "enumType": { - "$ref": "9731" + "$ref": "9733" }, "decorators": [] }, { - "$id": "9740", + "$id": "9742", "kind": "enumvalue", "name": "message.output_text.logprobs", "value": "message.output_text.logprobs", "valueType": { - "$ref": "9732" + "$ref": "9734" }, "enumType": { - "$ref": "9731" + "$ref": "9733" }, "decorators": [] } @@ -131140,7 +131166,7 @@ "readOnly": false }, { - "$id": "9741", + "$id": "9743", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131162,7 +131188,7 @@ 200 ], "bodyType": { - "$id": "9742", + "$id": "9744", "kind": "model", "name": "ConversationItemList", "namespace": "OpenAI", @@ -131173,7 +131199,7 @@ "decorators": [], "properties": [ { - "$id": "9743", + "$id": "9745", "kind": "property", "name": "object", "doc": "The type of object returned, must be `list`.", @@ -131190,12 +131216,12 @@ "isHttpMetadata": false }, { - "$id": "9744", + "$id": "9746", "kind": "property", "name": "data", "doc": "A list of conversation items.", "type": { - "$ref": "5191" + "$ref": "5193" }, "optional": false, "readOnly": false, @@ -131207,12 +131233,12 @@ "isHttpMetadata": false }, { - "$id": "9745", + "$id": "9747", "kind": "property", "name": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "9746", + "$id": "9748", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -131228,12 +131254,12 @@ "isHttpMetadata": false }, { - "$id": "9747", + "$id": "9749", "kind": "property", "name": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "9748", + "$id": "9750", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131249,12 +131275,12 @@ "isHttpMetadata": false }, { - "$id": "9749", + "$id": "9751", "kind": "property", "name": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "9750", + "$id": "9752", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131289,13 +131315,13 @@ }, "parameters": [ { - "$id": "9751", + "$id": "9753", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to list items for.", "type": { - "$id": "9752", + "$id": "9754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131311,13 +131337,13 @@ "decorators": [] }, { - "$id": "9753", + "$id": "9755", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between\n1 and 100, and the default is 20.", "type": { - "$id": "9754", + "$id": "9756", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -131333,13 +131359,13 @@ "decorators": [] }, { - "$id": "9755", + "$id": "9757", "kind": "method", "name": "order", "serializedName": "order", "doc": "The order to return the input items in. Default is `desc`.\n- `asc`: Return the input items in ascending order.\n- `desc`: Return the input items in descending order.", "type": { - "$ref": "9723" + "$ref": "9725" }, "location": "Query", "isApiVersion": false, @@ -131351,13 +131377,13 @@ "decorators": [] }, { - "$id": "9756", + "$id": "9758", "kind": "method", "name": "after", "serializedName": "after", "doc": "An item ID to list items after, used in pagination.", "type": { - "$id": "9757", + "$id": "9759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131373,13 +131399,13 @@ "decorators": [] }, { - "$id": "9758", + "$id": "9760", "kind": "method", "name": "include", "serializedName": "include", "doc": "Specify additional output data to include in the model response. Currently supported values are:\n- `web_search_call.action.sources`: Include the sources of the web search tool call.\n- `code_interpreter_call.outputs`: Includes the outputs of python code execution in code interpreter tool call items.\n- `computer_call_output.output.image_url`: Include image urls from the computer call output.\n- `file_search_call.results`: Include the search results of the file search tool call.\n- `message.input_image.image_url`: Include image urls from the input message.\n- `message.output_text.logprobs`: Include logprobs with assistant messages.\n- `reasoning.encrypted_content`: Includes an encrypted version of reasoning tokens in reasoning item outputs. This enables reasoning items to be used in multi-turn conversations when using the Responses API statelessly (like when the `store` parameter is set to `false`, or when an organization is enrolled in the zero data retention program).", "type": { - "$ref": "9730" + "$ref": "9732" }, "location": "Query", "isApiVersion": false, @@ -131391,7 +131417,7 @@ "decorators": [] }, { - "$id": "9759", + "$id": "9761", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131410,7 +131436,7 @@ ], "response": { "type": { - "$ref": "5191" + "$ref": "5193" }, "resultSegments": [ "data" @@ -131427,7 +131453,7 @@ } }, { - "$id": "9760", + "$id": "9762", "kind": "basic", "name": "createConversationItems", "accessibility": "public", @@ -131435,7 +131461,7 @@ "doc": "Create items in a conversation with the given ID.", "summary": "Create items", "operation": { - "$id": "9761", + "$id": "9763", "name": "createConversationItems", "resourceName": "OpenAI", "summary": "Create items", @@ -131443,13 +131469,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9762", + "$id": "9764", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to add the item to.", "type": { - "$id": "9763", + "$id": "9765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131467,13 +131493,13 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.conversation_id" }, { - "$id": "9764", + "$id": "9766", "kind": "query", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9730" + "$ref": "9732" }, "isApiVersion": false, "explode": true, @@ -131484,7 +131510,7 @@ "readOnly": false }, { - "$id": "9765", + "$id": "9767", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -131501,7 +131527,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.contentType" }, { - "$id": "9766", + "$id": "9768", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131517,12 +131543,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems.accept" }, { - "$id": "9767", + "$id": "9769", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9768", + "$id": "9770", "kind": "model", "name": "CreateConversationItemsParametersBody", "namespace": "OpenAI", @@ -131531,11 +131557,11 @@ "decorators": [], "properties": [ { - "$id": "9769", + "$id": "9771", "kind": "property", "name": "items", "type": { - "$ref": "5191" + "$ref": "5193" }, "optional": false, "readOnly": false, @@ -131566,7 +131592,7 @@ 200 ], "bodyType": { - "$ref": "9742" + "$ref": "9744" }, "headers": [], "isErrorResponse": false, @@ -131589,13 +131615,13 @@ }, "parameters": [ { - "$id": "9770", + "$id": "9772", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to add the item to.", "type": { - "$id": "9771", + "$id": "9773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131611,13 +131637,13 @@ "decorators": [] }, { - "$id": "9772", + "$id": "9774", "kind": "method", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9730" + "$ref": "9732" }, "location": "Query", "isApiVersion": false, @@ -131629,12 +131655,12 @@ "decorators": [] }, { - "$id": "9773", + "$id": "9775", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9768" + "$ref": "9770" }, "location": "Body", "isApiVersion": false, @@ -131646,7 +131672,7 @@ "decorators": [] }, { - "$id": "9774", + "$id": "9776", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -131664,7 +131690,7 @@ "decorators": [] }, { - "$id": "9775", + "$id": "9777", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131683,7 +131709,7 @@ ], "response": { "type": { - "$ref": "9742" + "$ref": "9744" } }, "isOverride": false, @@ -131692,7 +131718,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversationItems" }, { - "$id": "9776", + "$id": "9778", "kind": "basic", "name": "deleteConversationItem", "accessibility": "public", @@ -131700,7 +131726,7 @@ "doc": "Delete an item from a conversation with the given IDs.", "summary": "Delete an item", "operation": { - "$id": "9777", + "$id": "9779", "name": "deleteConversationItem", "resourceName": "OpenAI", "summary": "Delete an item", @@ -131708,13 +131734,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9778", + "$id": "9780", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9779", + "$id": "9781", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131732,13 +131758,13 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem.conversation_id" }, { - "$id": "9780", + "$id": "9782", "kind": "path", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "9781", + "$id": "9783", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131756,7 +131782,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem.item_id" }, { - "$id": "9782", + "$id": "9784", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -131778,7 +131804,7 @@ 200 ], "bodyType": { - "$id": "9783", + "$id": "9785", "kind": "model", "name": "ConversationResource", "namespace": "OpenAI", @@ -131787,12 +131813,12 @@ "decorators": [], "properties": [ { - "$id": "9784", + "$id": "9786", "kind": "property", "name": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "9785", + "$id": "9787", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131808,7 +131834,7 @@ "isHttpMetadata": false }, { - "$id": "9786", + "$id": "9788", "kind": "property", "name": "object", "doc": "The object type, which is always `conversation`.", @@ -131825,12 +131851,12 @@ "isHttpMetadata": false }, { - "$id": "9787", + "$id": "9789", "kind": "property", "name": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.\n Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.", "type": { - "$id": "9788", + "$id": "9790", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -131846,12 +131872,12 @@ "isHttpMetadata": false }, { - "$id": "9789", + "$id": "9791", "kind": "property", "name": "created_at", "doc": "The time at which the conversation was created, measured in seconds since the Unix epoch.", "type": { - "$id": "9790", + "$id": "9792", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -131886,13 +131912,13 @@ }, "parameters": [ { - "$id": "9791", + "$id": "9793", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9792", + "$id": "9794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131908,13 +131934,13 @@ "decorators": [] }, { - "$id": "9793", + "$id": "9795", "kind": "method", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "9794", + "$id": "9796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131930,7 +131956,7 @@ "decorators": [] }, { - "$id": "9795", + "$id": "9797", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -131949,7 +131975,7 @@ ], "response": { "type": { - "$ref": "9783" + "$ref": "9785" } }, "isOverride": false, @@ -131958,7 +131984,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversationItem" }, { - "$id": "9796", + "$id": "9798", "kind": "basic", "name": "getConversationItem", "accessibility": "public", @@ -131966,7 +131992,7 @@ "doc": "Get a single item from a conversation with the given IDs.", "summary": "Retrieve an item", "operation": { - "$id": "9797", + "$id": "9799", "name": "getConversationItem", "resourceName": "OpenAI", "summary": "Retrieve an item", @@ -131974,13 +132000,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9798", + "$id": "9800", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9799", + "$id": "9801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -131998,13 +132024,13 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem.conversation_id" }, { - "$id": "9800", + "$id": "9802", "kind": "path", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "9801", + "$id": "9803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132022,13 +132048,13 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem.item_id" }, { - "$id": "9802", + "$id": "9804", "kind": "query", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9730" + "$ref": "9732" }, "isApiVersion": false, "explode": true, @@ -132039,7 +132065,7 @@ "readOnly": false }, { - "$id": "9803", + "$id": "9805", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132061,7 +132087,7 @@ 200 ], "bodyType": { - "$ref": "5192" + "$ref": "5194" }, "headers": [], "isErrorResponse": false, @@ -132081,13 +132107,13 @@ }, "parameters": [ { - "$id": "9804", + "$id": "9806", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation that contains the item.", "type": { - "$id": "9805", + "$id": "9807", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132103,13 +132129,13 @@ "decorators": [] }, { - "$id": "9806", + "$id": "9808", "kind": "method", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "9807", + "$id": "9809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132125,13 +132151,13 @@ "decorators": [] }, { - "$id": "9808", + "$id": "9810", "kind": "method", "name": "include", "serializedName": "include", "doc": "Additional fields to include in the response. See the `include`\nparameter for [listing Conversation items above](https://platform.openai.com/docs/api-reference/conversations/list-items#conversations_list_items-include) for more information.", "type": { - "$ref": "9730" + "$ref": "9732" }, "location": "Query", "isApiVersion": false, @@ -132143,7 +132169,7 @@ "decorators": [] }, { - "$id": "9809", + "$id": "9811", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132162,7 +132188,7 @@ ], "response": { "type": { - "$ref": "5192" + "$ref": "5194" } }, "isOverride": false, @@ -132171,7 +132197,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversationItem" }, { - "$id": "9810", + "$id": "9812", "kind": "basic", "name": "createConversation", "accessibility": "public", @@ -132179,7 +132205,7 @@ "doc": "Create a conversation.", "summary": "Create a conversation", "operation": { - "$id": "9811", + "$id": "9813", "name": "createConversation", "resourceName": "OpenAI", "summary": "Create a conversation", @@ -132187,7 +132213,7 @@ "accessibility": "public", "parameters": [ { - "$id": "9812", + "$id": "9814", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -132204,7 +132230,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversation.contentType" }, { - "$id": "9813", + "$id": "9815", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132220,12 +132246,12 @@ "crossLanguageDefinitionId": "OpenAI.createConversation.accept" }, { - "$id": "9814", + "$id": "9816", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9815", + "$id": "9817", "kind": "model", "name": "CreateConversationBody", "namespace": "OpenAI", @@ -132234,14 +132260,14 @@ "decorators": [], "properties": [ { - "$id": "9816", + "$id": "9818", "kind": "property", "name": "metadata", "type": { - "$id": "9817", + "$id": "9819", "kind": "nullable", "type": { - "$id": "9818", + "$id": "9820", "kind": "model", "name": "Metadata", "namespace": "OpenAI", @@ -132263,14 +132289,14 @@ "isHttpMetadata": false }, { - "$id": "9819", + "$id": "9821", "kind": "property", "name": "items", "type": { - "$id": "9820", + "$id": "9822", "kind": "nullable", "type": { - "$ref": "5191" + "$ref": "5193" }, "namespace": "OpenAI" }, @@ -132303,7 +132329,7 @@ 200 ], "bodyType": { - "$ref": "9783" + "$ref": "9785" }, "headers": [], "isErrorResponse": false, @@ -132326,12 +132352,12 @@ }, "parameters": [ { - "$id": "9821", + "$id": "9823", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9815" + "$ref": "9817" }, "location": "Body", "isApiVersion": false, @@ -132343,7 +132369,7 @@ "decorators": [] }, { - "$id": "9822", + "$id": "9824", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -132361,7 +132387,7 @@ "decorators": [] }, { - "$id": "9823", + "$id": "9825", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132380,7 +132406,7 @@ ], "response": { "type": { - "$ref": "9783" + "$ref": "9785" } }, "isOverride": false, @@ -132389,7 +132415,7 @@ "crossLanguageDefinitionId": "OpenAI.createConversation" }, { - "$id": "9824", + "$id": "9826", "kind": "basic", "name": "deleteConversation", "accessibility": "public", @@ -132397,7 +132423,7 @@ "doc": "Delete a conversation. Items in the conversation will not be deleted.", "summary": "Delete a conversation", "operation": { - "$id": "9825", + "$id": "9827", "name": "deleteConversation", "resourceName": "OpenAI", "summary": "Delete a conversation", @@ -132405,13 +132431,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9826", + "$id": "9828", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to delete.", "type": { - "$id": "9827", + "$id": "9829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132429,7 +132455,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversation.conversation_id" }, { - "$id": "9828", + "$id": "9830", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132451,7 +132477,7 @@ 200 ], "bodyType": { - "$id": "9829", + "$id": "9831", "kind": "model", "name": "DeletedConversationResource", "namespace": "OpenAI", @@ -132460,7 +132486,7 @@ "decorators": [], "properties": [ { - "$id": "9830", + "$id": "9832", "kind": "property", "name": "object", "type": { @@ -132476,11 +132502,11 @@ "isHttpMetadata": false }, { - "$id": "9831", + "$id": "9833", "kind": "property", "name": "deleted", "type": { - "$id": "9832", + "$id": "9834", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -132496,11 +132522,11 @@ "isHttpMetadata": false }, { - "$id": "9833", + "$id": "9835", "kind": "property", "name": "id", "type": { - "$id": "9834", + "$id": "9836", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132535,13 +132561,13 @@ }, "parameters": [ { - "$id": "9835", + "$id": "9837", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to delete.", "type": { - "$id": "9836", + "$id": "9838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132557,7 +132583,7 @@ "decorators": [] }, { - "$id": "9837", + "$id": "9839", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132576,7 +132602,7 @@ ], "response": { "type": { - "$ref": "9829" + "$ref": "9831" } }, "isOverride": false, @@ -132585,7 +132611,7 @@ "crossLanguageDefinitionId": "OpenAI.deleteConversation" }, { - "$id": "9838", + "$id": "9840", "kind": "basic", "name": "getConversation", "accessibility": "public", @@ -132593,7 +132619,7 @@ "doc": "Get a conversation", "summary": "Retrieve a conversation", "operation": { - "$id": "9839", + "$id": "9841", "name": "getConversation", "resourceName": "OpenAI", "summary": "Retrieve a conversation", @@ -132601,13 +132627,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9840", + "$id": "9842", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to retrieve.", "type": { - "$id": "9841", + "$id": "9843", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132625,7 +132651,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversation.conversation_id" }, { - "$id": "9842", + "$id": "9844", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132647,7 +132673,7 @@ 200 ], "bodyType": { - "$ref": "9783" + "$ref": "9785" }, "headers": [], "isErrorResponse": false, @@ -132667,13 +132693,13 @@ }, "parameters": [ { - "$id": "9843", + "$id": "9845", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to retrieve.", "type": { - "$id": "9844", + "$id": "9846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132689,7 +132715,7 @@ "decorators": [] }, { - "$id": "9845", + "$id": "9847", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132708,7 +132734,7 @@ ], "response": { "type": { - "$ref": "9783" + "$ref": "9785" } }, "isOverride": false, @@ -132717,7 +132743,7 @@ "crossLanguageDefinitionId": "OpenAI.getConversation" }, { - "$id": "9846", + "$id": "9848", "kind": "basic", "name": "updateConversation", "accessibility": "public", @@ -132725,7 +132751,7 @@ "doc": "Update a conversation", "summary": "Update a conversation", "operation": { - "$id": "9847", + "$id": "9849", "name": "updateConversation", "resourceName": "OpenAI", "summary": "Update a conversation", @@ -132733,13 +132759,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9848", + "$id": "9850", "kind": "path", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to update.", "type": { - "$id": "9849", + "$id": "9851", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132757,7 +132783,7 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.conversation_id" }, { - "$id": "9850", + "$id": "9852", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -132774,7 +132800,7 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.contentType" }, { - "$id": "9851", + "$id": "9853", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -132790,12 +132816,12 @@ "crossLanguageDefinitionId": "OpenAI.updateConversation.accept" }, { - "$id": "9852", + "$id": "9854", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9853", + "$id": "9855", "kind": "model", "name": "UpdateConversationBody", "namespace": "OpenAI", @@ -132804,15 +132830,15 @@ "decorators": [], "properties": [ { - "$id": "9854", + "$id": "9856", "kind": "property", "name": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard.\n Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters.", "type": { - "$id": "9855", + "$id": "9857", "kind": "nullable", "type": { - "$ref": "9818" + "$ref": "9820" }, "namespace": "OpenAI" }, @@ -132845,7 +132871,7 @@ 200 ], "bodyType": { - "$ref": "9783" + "$ref": "9785" }, "headers": [], "isErrorResponse": false, @@ -132868,13 +132894,13 @@ }, "parameters": [ { - "$id": "9856", + "$id": "9858", "kind": "method", "name": "conversation_id", "serializedName": "conversation_id", "doc": "The ID of the conversation to update.", "type": { - "$id": "9857", + "$id": "9859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -132890,12 +132916,12 @@ "decorators": [] }, { - "$id": "9858", + "$id": "9860", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9853" + "$ref": "9855" }, "location": "Body", "isApiVersion": false, @@ -132907,7 +132933,7 @@ "decorators": [] }, { - "$id": "9859", + "$id": "9861", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -132925,7 +132951,7 @@ "decorators": [] }, { - "$id": "9860", + "$id": "9862", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -132944,7 +132970,7 @@ ], "response": { "type": { - "$ref": "9783" + "$ref": "9785" } }, "isOverride": false, @@ -132955,13 +132981,13 @@ ], "parameters": [ { - "$id": "9861", + "$id": "9863", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9862", + "$id": "9864", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -132972,7 +132998,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9863", + "$id": "9865", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -132990,17 +133016,17 @@ "crossLanguageDefinitionId": "OpenAI", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } }, { - "$id": "9864", + "$id": "9866", "kind": "client", "name": "Videos", "namespace": "OpenAI", "methods": [ { - "$id": "9865", + "$id": "9867", "kind": "paging", "name": "ListVideos", "accessibility": "public", @@ -133008,7 +133034,7 @@ "doc": "List videos", "summary": "List videos", "operation": { - "$id": "9866", + "$id": "9868", "name": "ListVideos", "resourceName": "OpenAI", "summary": "List videos", @@ -133016,13 +133042,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9867", + "$id": "9869", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of items to retrieve", "type": { - "$id": "9868", + "$id": "9870", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133037,18 +133063,18 @@ "readOnly": false }, { - "$id": "9869", + "$id": "9871", "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order of results by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$id": "9870", + "$id": "9872", "kind": "enum", "name": "OrderEnum", "crossLanguageDefinitionId": "OpenAI.OrderEnum", "valueType": { - "$id": "9871", + "$id": "9873", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133056,28 +133082,28 @@ }, "values": [ { - "$id": "9872", + "$id": "9874", "kind": "enumvalue", "name": "asc", "value": "asc", "valueType": { - "$ref": "9871" + "$ref": "9873" }, "enumType": { - "$ref": "9870" + "$ref": "9872" }, "decorators": [] }, { - "$id": "9873", + "$id": "9875", "kind": "enumvalue", "name": "desc", "value": "desc", "valueType": { - "$ref": "9871" + "$ref": "9873" }, "enumType": { - "$ref": "9870" + "$ref": "9872" }, "decorators": [] } @@ -133097,13 +133123,13 @@ "readOnly": false }, { - "$id": "9874", + "$id": "9876", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last item from the previous pagination request", "type": { - "$id": "9875", + "$id": "9877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133118,7 +133144,7 @@ "readOnly": false }, { - "$id": "9876", + "$id": "9878", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133140,7 +133166,7 @@ 200 ], "bodyType": { - "$id": "9877", + "$id": "9879", "kind": "model", "name": "VideoListResource", "namespace": "OpenAI", @@ -133149,7 +133175,7 @@ "decorators": [], "properties": [ { - "$id": "9878", + "$id": "9880", "kind": "property", "name": "object", "doc": "The type of object returned, must be `list`.", @@ -133166,16 +133192,16 @@ "isHttpMetadata": false }, { - "$id": "9879", + "$id": "9881", "kind": "property", "name": "data", "doc": "A list of items", "type": { - "$id": "9880", + "$id": "9882", "kind": "array", "name": "ArrayVideoResource", "valueType": { - "$id": "9881", + "$id": "9883", "kind": "model", "name": "VideoResource", "namespace": "OpenAI", @@ -133186,12 +133212,12 @@ "decorators": [], "properties": [ { - "$id": "9882", + "$id": "9884", "kind": "property", "name": "id", "doc": "Unique identifier for the video job.", "type": { - "$id": "9883", + "$id": "9885", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133207,7 +133233,7 @@ "isHttpMetadata": false }, { - "$id": "9884", + "$id": "9886", "kind": "property", "name": "object", "doc": "The object type, which is always `video`.", @@ -133224,17 +133250,17 @@ "isHttpMetadata": false }, { - "$id": "9885", + "$id": "9887", "kind": "property", "name": "model", "doc": "The video generation model that produced the job.", "type": { - "$id": "9886", + "$id": "9888", "kind": "enum", "name": "VideoModel", "crossLanguageDefinitionId": "OpenAI.VideoModel", "valueType": { - "$id": "9887", + "$id": "9889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133242,28 +133268,28 @@ }, "values": [ { - "$id": "9888", + "$id": "9890", "kind": "enumvalue", "name": "sora-2", "value": "sora-2", "valueType": { - "$ref": "9887" + "$ref": "9889" }, "enumType": { - "$ref": "9886" + "$ref": "9888" }, "decorators": [] }, { - "$id": "9889", + "$id": "9891", "kind": "enumvalue", "name": "sora-2-pro", "value": "sora-2-pro", "valueType": { - "$ref": "9887" + "$ref": "9889" }, "enumType": { - "$ref": "9886" + "$ref": "9888" }, "decorators": [] } @@ -133284,17 +133310,17 @@ "isHttpMetadata": false }, { - "$id": "9890", + "$id": "9892", "kind": "property", "name": "status", "doc": "Current lifecycle status of the video job.", "type": { - "$id": "9891", + "$id": "9893", "kind": "enum", "name": "VideoStatus", "crossLanguageDefinitionId": "OpenAI.VideoStatus", "valueType": { - "$id": "9892", + "$id": "9894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133302,54 +133328,54 @@ }, "values": [ { - "$id": "9893", + "$id": "9895", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "9892" + "$ref": "9894" }, "enumType": { - "$ref": "9891" + "$ref": "9893" }, "decorators": [] }, { - "$id": "9894", + "$id": "9896", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "9892" + "$ref": "9894" }, "enumType": { - "$ref": "9891" + "$ref": "9893" }, "decorators": [] }, { - "$id": "9895", + "$id": "9897", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "9892" + "$ref": "9894" }, "enumType": { - "$ref": "9891" + "$ref": "9893" }, "decorators": [] }, { - "$id": "9896", + "$id": "9898", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "9892" + "$ref": "9894" }, "enumType": { - "$ref": "9891" + "$ref": "9893" }, "decorators": [] } @@ -133370,12 +133396,12 @@ "isHttpMetadata": false }, { - "$id": "9897", + "$id": "9899", "kind": "property", "name": "progress", "doc": "Approximate completion percentage for the generation task.", "type": { - "$id": "9898", + "$id": "9900", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133391,12 +133417,12 @@ "isHttpMetadata": false }, { - "$id": "9899", + "$id": "9901", "kind": "property", "name": "created_at", "doc": "Unix timestamp (seconds) for when the job was created.", "type": { - "$id": "9900", + "$id": "9902", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133412,14 +133438,14 @@ "isHttpMetadata": false }, { - "$id": "9901", + "$id": "9903", "kind": "property", "name": "completed_at", "type": { - "$id": "9902", + "$id": "9904", "kind": "nullable", "type": { - "$id": "9903", + "$id": "9905", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133437,14 +133463,14 @@ "isHttpMetadata": false }, { - "$id": "9904", + "$id": "9906", "kind": "property", "name": "expires_at", "type": { - "$id": "9905", + "$id": "9907", "kind": "nullable", "type": { - "$id": "9906", + "$id": "9908", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133462,17 +133488,17 @@ "isHttpMetadata": false }, { - "$id": "9907", + "$id": "9909", "kind": "property", "name": "size", "doc": "The resolution of the generated video.", "type": { - "$id": "9908", + "$id": "9910", "kind": "enum", "name": "VideoSize", "crossLanguageDefinitionId": "OpenAI.VideoSize", "valueType": { - "$id": "9909", + "$id": "9911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133480,54 +133506,54 @@ }, "values": [ { - "$id": "9910", + "$id": "9912", "kind": "enumvalue", "name": "720x1280", "value": "720x1280", "valueType": { - "$ref": "9909" + "$ref": "9911" }, "enumType": { - "$ref": "9908" + "$ref": "9910" }, "decorators": [] }, { - "$id": "9911", + "$id": "9913", "kind": "enumvalue", "name": "1280x720", "value": "1280x720", "valueType": { - "$ref": "9909" + "$ref": "9911" }, "enumType": { - "$ref": "9908" + "$ref": "9910" }, "decorators": [] }, { - "$id": "9912", + "$id": "9914", "kind": "enumvalue", "name": "1024x1792", "value": "1024x1792", "valueType": { - "$ref": "9909" + "$ref": "9911" }, "enumType": { - "$ref": "9908" + "$ref": "9910" }, "decorators": [] }, { - "$id": "9913", + "$id": "9915", "kind": "enumvalue", "name": "1792x1024", "value": "1792x1024", "valueType": { - "$ref": "9909" + "$ref": "9911" }, "enumType": { - "$ref": "9908" + "$ref": "9910" }, "decorators": [] } @@ -133548,17 +133574,17 @@ "isHttpMetadata": false }, { - "$id": "9914", + "$id": "9916", "kind": "property", "name": "seconds", "doc": "Duration of the generated clip in seconds.", "type": { - "$id": "9915", + "$id": "9917", "kind": "enum", "name": "VideoSeconds", "crossLanguageDefinitionId": "OpenAI.VideoSeconds", "valueType": { - "$id": "9916", + "$id": "9918", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133566,41 +133592,41 @@ }, "values": [ { - "$id": "9917", + "$id": "9919", "kind": "enumvalue", "name": "4", "value": "4", "valueType": { - "$ref": "9916" + "$ref": "9918" }, "enumType": { - "$ref": "9915" + "$ref": "9917" }, "decorators": [] }, { - "$id": "9918", + "$id": "9920", "kind": "enumvalue", "name": "8", "value": "8", "valueType": { - "$ref": "9916" + "$ref": "9918" }, "enumType": { - "$ref": "9915" + "$ref": "9917" }, "decorators": [] }, { - "$id": "9919", + "$id": "9921", "kind": "enumvalue", "name": "12", "value": "12", "valueType": { - "$ref": "9916" + "$ref": "9918" }, "enumType": { - "$ref": "9915" + "$ref": "9917" }, "decorators": [] } @@ -133621,14 +133647,14 @@ "isHttpMetadata": false }, { - "$id": "9920", + "$id": "9922", "kind": "property", "name": "remixed_from_video_id", "type": { - "$id": "9921", + "$id": "9923", "kind": "nullable", "type": { - "$id": "9922", + "$id": "9924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133646,14 +133672,14 @@ "isHttpMetadata": false }, { - "$id": "9923", + "$id": "9925", "kind": "property", "name": "error", "type": { - "$id": "9924", + "$id": "9926", "kind": "nullable", "type": { - "$id": "9925", + "$id": "9927", "kind": "model", "name": "Error-2", "namespace": "OpenAI", @@ -133662,11 +133688,11 @@ "decorators": [], "properties": [ { - "$id": "9926", + "$id": "9928", "kind": "property", "name": "code", "type": { - "$id": "9927", + "$id": "9929", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133682,11 +133708,11 @@ "isHttpMetadata": false }, { - "$id": "9928", + "$id": "9930", "kind": "property", "name": "message", "type": { - "$id": "9929", + "$id": "9931", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133729,11 +133755,11 @@ "isHttpMetadata": false }, { - "$id": "9930", + "$id": "9932", "kind": "property", "name": "first_id", "type": { - "$id": "9931", + "$id": "9933", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133749,11 +133775,11 @@ "isHttpMetadata": false }, { - "$id": "9932", + "$id": "9934", "kind": "property", "name": "last_id", "type": { - "$id": "9933", + "$id": "9935", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133769,12 +133795,12 @@ "isHttpMetadata": false }, { - "$id": "9934", + "$id": "9936", "kind": "property", "name": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "9935", + "$id": "9937", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -133809,13 +133835,13 @@ }, "parameters": [ { - "$id": "9936", + "$id": "9938", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of items to retrieve", "type": { - "$id": "9937", + "$id": "9939", "kind": "integer", "name": "integer", "crossLanguageDefinitionId": "TypeSpec.integer", @@ -133831,13 +133857,13 @@ "decorators": [] }, { - "$id": "9938", + "$id": "9940", "kind": "method", "name": "order", "serializedName": "order", "doc": "Sort order of results by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "9870" + "$ref": "9872" }, "location": "Query", "isApiVersion": false, @@ -133849,13 +133875,13 @@ "decorators": [] }, { - "$id": "9939", + "$id": "9941", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last item from the previous pagination request", "type": { - "$id": "9940", + "$id": "9942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -133871,7 +133897,7 @@ "decorators": [] }, { - "$id": "9941", + "$id": "9943", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -133890,7 +133916,7 @@ ], "response": { "type": { - "$ref": "9880" + "$ref": "9882" }, "resultSegments": [ "data" @@ -133907,7 +133933,7 @@ } }, { - "$id": "9942", + "$id": "9944", "kind": "basic", "name": "createVideo", "accessibility": "public", @@ -133915,7 +133941,7 @@ "doc": "Create a video", "summary": "Create video", "operation": { - "$id": "9943", + "$id": "9945", "name": "createVideo", "resourceName": "OpenAI", "summary": "Create video", @@ -133923,7 +133949,7 @@ "accessibility": "public", "parameters": [ { - "$id": "9944", + "$id": "9946", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -133939,7 +133965,7 @@ "crossLanguageDefinitionId": "OpenAI.createVideo.contentType" }, { - "$id": "9945", + "$id": "9947", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -133955,12 +133981,12 @@ "crossLanguageDefinitionId": "OpenAI.createVideo.accept" }, { - "$id": "9946", + "$id": "9948", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "9947", + "$id": "9949", "kind": "model", "name": "CreateVideoBody", "namespace": "OpenAI", @@ -133971,13 +133997,13 @@ "decorators": [], "properties": [ { - "$id": "9948", + "$id": "9950", "kind": "property", "name": "model", "serializedName": "model", "doc": "The video generation model to use. Defaults to `sora-2`.", "type": { - "$ref": "9886" + "$ref": "9888" }, "optional": true, "readOnly": false, @@ -133999,18 +134025,18 @@ "isHttpMetadata": false }, { - "$id": "9949", + "$id": "9951", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "Text prompt that describes the video to generate.", "type": { - "$id": "9950", + "$id": "9952", "kind": "string", "name": "VideoPrompt", "crossLanguageDefinitionId": "OpenAI.VideoPrompt", "baseType": { - "$id": "9951", + "$id": "9953", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134038,13 +134064,13 @@ "isHttpMetadata": false }, { - "$id": "9952", + "$id": "9954", "kind": "property", "name": "input_reference", "serializedName": "input_reference", "doc": "Optional image reference that guides generation.", "type": { - "$id": "9953", + "$id": "9955", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -134071,13 +134097,13 @@ "isHttpMetadata": false }, { - "$id": "9954", + "$id": "9956", "kind": "property", "name": "seconds", "serializedName": "seconds", "doc": "Clip duration in seconds. Defaults to 4 seconds.", "type": { - "$ref": "9915" + "$ref": "9917" }, "optional": true, "readOnly": false, @@ -134099,13 +134125,13 @@ "isHttpMetadata": false }, { - "$id": "9955", + "$id": "9957", "kind": "property", "name": "size", "serializedName": "size", "doc": "Output resolution formatted as width x height. Defaults to 720x1280.", "type": { - "$ref": "9908" + "$ref": "9910" }, "optional": true, "readOnly": false, @@ -134146,7 +134172,7 @@ 200 ], "bodyType": { - "$ref": "9881" + "$ref": "9883" }, "headers": [], "isErrorResponse": false, @@ -134169,7 +134195,7 @@ }, "parameters": [ { - "$id": "9956", + "$id": "9958", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -134186,12 +134212,12 @@ "decorators": [] }, { - "$id": "9957", + "$id": "9959", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "9947" + "$ref": "9949" }, "location": "Body", "isApiVersion": false, @@ -134203,7 +134229,7 @@ "decorators": [] }, { - "$id": "9958", + "$id": "9960", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -134222,7 +134248,7 @@ ], "response": { "type": { - "$ref": "9881" + "$ref": "9883" } }, "isOverride": false, @@ -134231,7 +134257,7 @@ "crossLanguageDefinitionId": "OpenAI.createVideo" }, { - "$id": "9959", + "$id": "9961", "kind": "basic", "name": "DeleteVideo", "accessibility": "public", @@ -134239,7 +134265,7 @@ "doc": "Delete a video", "summary": "Delete video", "operation": { - "$id": "9960", + "$id": "9962", "name": "DeleteVideo", "resourceName": "OpenAI", "summary": "Delete video", @@ -134247,13 +134273,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9961", + "$id": "9963", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to delete.", "type": { - "$id": "9962", + "$id": "9964", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134271,7 +134297,7 @@ "crossLanguageDefinitionId": "OpenAI.DeleteVideo.video_id" }, { - "$id": "9963", + "$id": "9965", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -134293,7 +134319,7 @@ 200 ], "bodyType": { - "$id": "9964", + "$id": "9966", "kind": "model", "name": "DeletedVideoResource", "namespace": "OpenAI", @@ -134304,7 +134330,7 @@ "decorators": [], "properties": [ { - "$id": "9965", + "$id": "9967", "kind": "property", "name": "object", "doc": "The object type that signals the deletion response.", @@ -134321,12 +134347,12 @@ "isHttpMetadata": false }, { - "$id": "9966", + "$id": "9968", "kind": "property", "name": "deleted", "doc": "Indicates that the video resource was deleted.", "type": { - "$id": "9967", + "$id": "9969", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -134342,12 +134368,12 @@ "isHttpMetadata": false }, { - "$id": "9968", + "$id": "9970", "kind": "property", "name": "id", "doc": "Identifier of the deleted video.", "type": { - "$id": "9969", + "$id": "9971", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134382,13 +134408,13 @@ }, "parameters": [ { - "$id": "9970", + "$id": "9972", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to delete.", "type": { - "$id": "9971", + "$id": "9973", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134404,7 +134430,7 @@ "decorators": [] }, { - "$id": "9972", + "$id": "9974", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -134423,7 +134449,7 @@ ], "response": { "type": { - "$ref": "9964" + "$ref": "9966" } }, "isOverride": false, @@ -134432,7 +134458,7 @@ "crossLanguageDefinitionId": "OpenAI.DeleteVideo" }, { - "$id": "9973", + "$id": "9975", "kind": "basic", "name": "GetVideo", "accessibility": "public", @@ -134440,7 +134466,7 @@ "doc": "Retrieve a video", "summary": "Retrieve video", "operation": { - "$id": "9974", + "$id": "9976", "name": "GetVideo", "resourceName": "OpenAI", "summary": "Retrieve video", @@ -134448,13 +134474,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9975", + "$id": "9977", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to retrieve.", "type": { - "$id": "9976", + "$id": "9978", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134472,7 +134498,7 @@ "crossLanguageDefinitionId": "OpenAI.GetVideo.video_id" }, { - "$id": "9977", + "$id": "9979", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -134494,7 +134520,7 @@ 200 ], "bodyType": { - "$ref": "9881" + "$ref": "9883" }, "headers": [], "isErrorResponse": false, @@ -134514,13 +134540,13 @@ }, "parameters": [ { - "$id": "9978", + "$id": "9980", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video to retrieve.", "type": { - "$id": "9979", + "$id": "9981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134536,7 +134562,7 @@ "decorators": [] }, { - "$id": "9980", + "$id": "9982", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -134555,7 +134581,7 @@ ], "response": { "type": { - "$ref": "9881" + "$ref": "9883" } }, "isOverride": false, @@ -134564,7 +134590,7 @@ "crossLanguageDefinitionId": "OpenAI.GetVideo" }, { - "$id": "9981", + "$id": "9983", "kind": "basic", "name": "DownloadVideo", "accessibility": "public", @@ -134572,7 +134598,7 @@ "doc": "Download video content", "summary": "Retrieve video content", "operation": { - "$id": "9982", + "$id": "9984", "name": "DownloadVideo", "resourceName": "OpenAI", "summary": "Retrieve video content", @@ -134580,13 +134606,13 @@ "accessibility": "public", "parameters": [ { - "$id": "9983", + "$id": "9985", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video whose media to download.", "type": { - "$id": "9984", + "$id": "9986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134604,18 +134630,18 @@ "crossLanguageDefinitionId": "OpenAI.RetrieveVideoContent.video_id" }, { - "$id": "9985", + "$id": "9987", "kind": "query", "name": "variant", "serializedName": "variant", "doc": "Which downloadable asset to return. Defaults to the MP4 video.", "type": { - "$id": "9986", + "$id": "9988", "kind": "enum", "name": "VideoContentVariant", "crossLanguageDefinitionId": "OpenAI.VideoContentVariant", "valueType": { - "$id": "9987", + "$id": "9989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134623,41 +134649,41 @@ }, "values": [ { - "$id": "9988", + "$id": "9990", "kind": "enumvalue", "name": "video", "value": "video", "valueType": { - "$ref": "9987" + "$ref": "9989" }, "enumType": { - "$ref": "9986" + "$ref": "9988" }, "decorators": [] }, { - "$id": "9989", + "$id": "9991", "kind": "enumvalue", "name": "thumbnail", "value": "thumbnail", "valueType": { - "$ref": "9987" + "$ref": "9989" }, "enumType": { - "$ref": "9986" + "$ref": "9988" }, "decorators": [] }, { - "$id": "9990", + "$id": "9992", "kind": "enumvalue", "name": "spritesheet", "value": "spritesheet", "valueType": { - "$ref": "9987" + "$ref": "9989" }, "enumType": { - "$ref": "9986" + "$ref": "9988" }, "decorators": [] } @@ -134677,12 +134703,12 @@ "readOnly": false }, { - "$id": "9991", + "$id": "9993", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "9992", + "$id": "9994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134703,12 +134729,12 @@ 200 ], "bodyType": { - "$id": "9993", + "$id": "9995", "kind": "union", "name": "", "variantTypes": [ { - "$id": "9994", + "$id": "9996", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -134716,7 +134742,7 @@ "decorators": [] }, { - "$id": "9995", + "$id": "9997", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134761,13 +134787,13 @@ }, "parameters": [ { - "$id": "9996", + "$id": "9998", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the video whose media to download.", "type": { - "$id": "9997", + "$id": "9999", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134783,13 +134809,13 @@ "decorators": [] }, { - "$id": "9998", + "$id": "10000", "kind": "method", "name": "variant", "serializedName": "variant", "doc": "Which downloadable asset to return. Defaults to the MP4 video.", "type": { - "$ref": "9986" + "$ref": "9988" }, "location": "Query", "isApiVersion": false, @@ -134801,12 +134827,12 @@ "decorators": [] }, { - "$id": "9999", + "$id": "10001", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "9992" + "$ref": "9994" }, "location": "Header", "isApiVersion": false, @@ -134820,7 +134846,7 @@ ], "response": { "type": { - "$ref": "9993" + "$ref": "9995" } }, "isOverride": false, @@ -134829,7 +134855,7 @@ "crossLanguageDefinitionId": "OpenAI.RetrieveVideoContent" }, { - "$id": "10000", + "$id": "10002", "kind": "basic", "name": "CreateVideoRemix", "accessibility": "public", @@ -134837,7 +134863,7 @@ "doc": "Create a video remix", "summary": "Remix video", "operation": { - "$id": "10001", + "$id": "10003", "name": "CreateVideoRemix", "resourceName": "OpenAI", "summary": "Remix video", @@ -134845,13 +134871,13 @@ "accessibility": "public", "parameters": [ { - "$id": "10002", + "$id": "10004", "kind": "path", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the completed video to remix.", "type": { - "$id": "10003", + "$id": "10005", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134869,7 +134895,7 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.video_id" }, { - "$id": "10004", + "$id": "10006", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -134885,7 +134911,7 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.contentType" }, { - "$id": "10005", + "$id": "10007", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -134901,12 +134927,12 @@ "crossLanguageDefinitionId": "OpenAI.CreateVideoRemix.accept" }, { - "$id": "10006", + "$id": "10008", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$id": "10007", + "$id": "10009", "kind": "model", "name": "CreateVideoRemixBody", "namespace": "OpenAI", @@ -134917,18 +134943,18 @@ "decorators": [], "properties": [ { - "$id": "10008", + "$id": "10010", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "Updated text prompt that directs the remix generation.", "type": { - "$id": "10009", + "$id": "10011", "kind": "string", "name": "VideoPrompt", "crossLanguageDefinitionId": "OpenAI.VideoPrompt", "baseType": { - "$id": "10010", + "$id": "10012", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -134975,7 +135001,7 @@ 200 ], "bodyType": { - "$ref": "9881" + "$ref": "9883" }, "headers": [], "isErrorResponse": false, @@ -134998,13 +135024,13 @@ }, "parameters": [ { - "$id": "10011", + "$id": "10013", "kind": "method", "name": "video_id", "serializedName": "video_id", "doc": "The identifier of the completed video to remix.", "type": { - "$id": "10012", + "$id": "10014", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -135020,7 +135046,7 @@ "decorators": [] }, { - "$id": "10013", + "$id": "10015", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -135037,12 +135063,12 @@ "decorators": [] }, { - "$id": "10014", + "$id": "10016", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "10007" + "$ref": "10009" }, "location": "Body", "isApiVersion": false, @@ -135054,7 +135080,7 @@ "decorators": [] }, { - "$id": "10015", + "$id": "10017", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -135073,7 +135099,7 @@ ], "response": { "type": { - "$ref": "9881" + "$ref": "9883" } }, "isOverride": false, @@ -135084,13 +135110,13 @@ ], "parameters": [ { - "$id": "10016", + "$id": "10018", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "10017", + "$id": "10019", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -135101,7 +135127,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "10018", + "$id": "10020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -135119,7 +135145,7 @@ "crossLanguageDefinitionId": "OpenAI", "apiVersions": [], "parent": { - "$ref": "8245" + "$ref": "8247" } } ]