From 56eb4ddf1ab722e2b8731c821bb18a733accfb8f Mon Sep 17 00:00:00 2001 From: ShivangiReja <45216704+ShivangiReja@users.noreply.github.com> Date: Thu, 30 Oct 2025 15:18:46 -0700 Subject: [PATCH] Fix Assistants live test failures --- tests/Assistants/AssistantsTests.cs | 28 +- .../BasicAssistantOperationsWork.json | 619 ++-- .../BasicAssistantOperationsWorkAsync.json | 619 ++-- .../BasicMessageOperationsWork.json | 129 +- .../BasicMessageOperationsWorkAsync.json | 129 +- .../BasicRunOperationsWork.json | 271 +- .../BasicRunOperationsWorkAsync.json | 333 ++- .../BasicRunStepFunctionalityWorks.json | 2079 +++++++++---- .../BasicRunStepFunctionalityWorksAsync.json | 1553 ++++------ .../BasicThreadOperationsWork.json | 79 +- .../BasicThreadOperationsWorkAsync.json | 79 +- .../FileSearchStreamingWorks.json | 119 +- .../FileSearchStreamingWorksAsync.json | 123 +- .../AssistantsTests/FileSearchWorks.json | 459 +-- .../AssistantsTests/FileSearchWorksAsync.json | 369 +-- .../AssistantsTests/FunctionToolsWork.json | 567 ++-- .../FunctionToolsWorkAsync.json | 504 ++-- .../AssistantsTests/MessagesWithRoles.json | 123 +- .../MessagesWithRolesAsync.json | 123 +- ...agination_CanEnumerateAssistantsAsync.json | 418 +-- ...tion_CanEnumerateAssistantsAsyncAsync.json | 418 +-- ...ion_CanPageThroughAssistantCollection.json | 383 +-- ...anPageThroughAssistantCollectionAsync.json | 383 +-- ...drateAssistantPageCollectionFromBytes.json | 383 +-- ...AssistantPageCollectionFromBytesAsync.json | 383 +-- ...eAssistantPageCollectionFromPageToken.json | 383 +-- ...stantPageCollectionFromPageTokenAsync.json | 381 +-- ...hydrateRunStepPageCollectionFromBytes.json | 2158 +++----------- ...teRunStepPageCollectionFromBytesAsync.json | 2620 +++-------------- .../SettingResponseFormatWorks.json | 107 +- .../SettingResponseFormatWorksAsync.json | 107 +- .../AssistantsTests/StreamingRunWorks.json | 139 +- .../StreamingRunWorksAsync.json | 119 +- .../AssistantsTests/StreamingToolCall().json | 227 +- .../StreamingToolCall()Async.json | 245 +- .../ThreadWithImageDetailWorks.json | 38 +- .../ThreadWithImageDetailWorksAsync.json | 38 +- .../ThreadWithInitialMessagesWorks.json | 44 +- .../ThreadWithInitialMessagesWorksAsync.json | 44 +- 39 files changed, 7628 insertions(+), 9695 deletions(-) diff --git a/tests/Assistants/AssistantsTests.cs b/tests/Assistants/AssistantsTests.cs index 860a5be81..19b785443 100644 --- a/tests/Assistants/AssistantsTests.cs +++ b/tests/Assistants/AssistantsTests.cs @@ -88,7 +88,7 @@ protected void Cleanup() public async Task BasicAssistantOperationsWork() { AssistantClient client = GetTestClient(); - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini"); + Assistant assistant = await client.CreateAssistantAsync("gpt-4o"); Validate(assistant); Assert.That(assistant.Name, Is.Null.Or.Empty); AssistantModificationOptions modificationOptions = new() @@ -108,7 +108,7 @@ public async Task BasicAssistantOperationsWork() [s_cleanupMetadataKey] = "hello!" }, }; - assistant = await client.CreateAssistantAsync("gpt-4o-mini", creationOptions); + assistant = await client.CreateAssistantAsync("gpt-4o", creationOptions); Validate(assistant); Assistant retrievedAssistant = await client.GetAssistantAsync(assistant.Id); Assert.That(retrievedAssistant.Id, Is.EqualTo(assistant.Id)); @@ -299,7 +299,7 @@ public async Task ThreadWithImageDetailWorks() public async Task BasicRunOperationsWork() { AssistantClient client = GetTestClient(); - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini"); + Assistant assistant = await client.CreateAssistantAsync("gpt-4o"); Validate(assistant); AssistantThread thread = await client.CreateThreadAsync(); Validate(thread); @@ -346,7 +346,7 @@ public async Task BasicRunOperationsWork() public async Task BasicRunStepFunctionalityWorks() { AssistantClient client = GetTestClient(); - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", new AssistantCreationOptions() + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", new AssistantCreationOptions() { Tools = { new CodeInterpreterToolDefinition() }, Instructions = "You help the user with mathematical descriptions and visualizations.", @@ -437,7 +437,7 @@ public async Task SettingResponseFormatWorks() { ResponseFormat = AssistantResponseFormat.CreateAutoFormat(), }; - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", creationOptions); + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", creationOptions); Validate(assistant); Assert.That(assistant.ResponseFormat == "auto"); AssistantModificationOptions modificationOptions = new AssistantModificationOptions() @@ -484,7 +484,7 @@ public async Task FunctionToolsWork() }, }, }; - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", creationOptions); + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", creationOptions); Validate(assistant); Assert.That(assistant.Tools?.Count, Is.EqualTo(1)); @@ -541,7 +541,7 @@ public async Task FunctionToolsWork() public async Task StreamingRunWorks() { AssistantClient client = GetTestClient(); - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini"); + Assistant assistant = await client.CreateAssistantAsync("gpt-4o"); Validate(assistant); AssistantThread thread = await client.CreateThreadAsync(new ThreadCreationOptions() @@ -593,7 +593,7 @@ public async Task StreamingToolCall() { Description = "Gets the user's current weather", }; - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", new() + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", new() { Tools = { getWeatherTool } }); @@ -697,7 +697,7 @@ This file describes the favorite foods of several people. }; // Create an assistant, using the creation helper to make a new vector store - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", creationOptions); + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", creationOptions); Validate(assistant); Assert.That(assistant.ToolResources?.FileSearch?.VectorStoreIds, Has.Count.EqualTo(1)); string createdVectorStoreId = assistant.ToolResources.FileSearch.VectorStoreIds[0]; @@ -882,7 +882,7 @@ public async Task FileSearchStreamingWorks() } } }; - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", assistantCreationOptions); + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", assistantCreationOptions); Validate(assistant); Assert.That(assistant.ToolResources?.FileSearch?.VectorStoreIds, Has.Count.EqualTo(1)); @@ -952,7 +952,7 @@ public async Task Pagination_CanEnumerateAssistantsAsync() // Create assistant collection for (int i = 0; i < 10; i++) { - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", new AssistantCreationOptions() + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", new AssistantCreationOptions() { Name = $"Test Assistant {i}", }); @@ -996,7 +996,7 @@ public async Task Pagination_CanPageThroughAssistantCollection() // Create assistant collection for (int i = 0; i < TestAssistantCount; i++) { - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", new AssistantCreationOptions() + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", new AssistantCreationOptions() { Name = $"Test Assistant {i}" }); @@ -1061,7 +1061,7 @@ public async Task Pagination_CanRehydrateAssistantPageCollectionFromBytes() // Create assistant collection for (int i = 0; i < TestAssistantCount; i++) { - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", new AssistantCreationOptions() + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", new AssistantCreationOptions() { Name = $"Test Assistant {i}" }); @@ -1134,7 +1134,7 @@ public async Task Pagination_CanRehydrateAssistantPageCollectionFromPageToken() List createdAssistants = []; for (int i = 0; i < TestAssistantCount; i++) { - Assistant assistant = await client.CreateAssistantAsync("gpt-4o-mini", new AssistantCreationOptions() + Assistant assistant = await client.CreateAssistantAsync("gpt-4o", new AssistantCreationOptions() { Name = $"Test Assistant {i}" }); diff --git a/tests/SessionRecords/AssistantsTests/BasicAssistantOperationsWork.json b/tests/SessionRecords/AssistantsTests/BasicAssistantOperationsWork.json index 20cfc614c..54fca28dc 100644 --- a/tests/SessionRecords/AssistantsTests/BasicAssistantOperationsWork.json +++ b/tests/SessionRecords/AssistantsTests/BasicAssistantOperationsWork.json @@ -6,40 +6,41 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "23", + "Content-Length": "18", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini" + "model": "gpt-4o" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca64dcfea334-SEA", + "CF-RAY": "996e2d510f0908e3-SEA", "Connection": "keep-alive", - "Content-Length": "337", + "Content-Length": "332", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:20 GMT", + "Date": "Thu, 30 Oct 2025 21:58:57 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "287", + "openai-processing-ms": "412", "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": "306", + "x-envoy-upstream-service-time": "438", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_ZjJ7eVgmgQdZwU5wPy4wYTcZ", + "id": "asst_0Zpg0MDpGVgx2pLkXITMKl35", "object": "assistant", - "created_at": 1758061640, + "created_at": 1761861537, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -51,7 +52,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_ZjJ7eVgmgQdZwU5wPy4wYTcZ", + "RequestUri": "https://api.openai.com/v1/assistants/asst_0Zpg0MDpGVgx2pLkXITMKl35", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -59,7 +60,7 @@ "Content-Length": "30", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "name": "test assistant name" @@ -68,28 +69,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca675f07a334-SEA", + "CF-RAY": "996e2d545adf08e3-SEA", "Connection": "keep-alive", - "Content-Length": "354", + "Content-Length": "349", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:21 GMT", + "Date": "Thu, 30 Oct 2025 21:58:58 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "302", + "openai-processing-ms": "398", "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": "320", + "x-envoy-upstream-service-time": "404", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_ZjJ7eVgmgQdZwU5wPy4wYTcZ", + "id": "asst_0Zpg0MDpGVgx2pLkXITMKl35", "object": "assistant", - "created_at": 1758061640, + "created_at": 1761861537, "name": "test assistant name", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -101,36 +103,37 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_ZjJ7eVgmgQdZwU5wPy4wYTcZ", + "RequestUri": "https://api.openai.com/v1/assistants/asst_0Zpg0MDpGVgx2pLkXITMKl35", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca6a0900a334-SEA", + "CF-RAY": "996e2d576f4608e3-SEA", "Connection": "keep-alive", "Content-Length": "95", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:21 GMT", + "Date": "Thu, 30 Oct 2025 21:59:00 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "300", + "openai-processing-ms": "1855", "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": "304", + "x-envoy-upstream-service-time": "1966", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_ZjJ7eVgmgQdZwU5wPy4wYTcZ", + "id": "asst_0Zpg0MDpGVgx2pLkXITMKl35", "object": "assistant.deleted", "deleted": true } @@ -141,13 +144,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "78", + "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "metadata": { "test_metadata_cleanup_eligible": "hello!" } @@ -156,28 +159,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca6c9b0ba334-SEA", + "CF-RAY": "996e2d644e3708e3-SEA", "Connection": "keep-alive", - "Content-Length": "387", + "Content-Length": "382", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:22 GMT", + "Date": "Thu, 30 Oct 2025 21:59:02 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "279", + "openai-processing-ms": "1692", "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": "296", + "x-envoy-upstream-service-time": "1825", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_GcOQbWNpdlX6hpuNjPeCH5bv", + "id": "asst_nhxgDqo6qGQapC8t5lPpo7kB", "object": "assistant", - "created_at": 1758061641, + "created_at": 1761861541, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -191,41 +195,42 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_GcOQbWNpdlX6hpuNjPeCH5bv", + "RequestUri": "https://api.openai.com/v1/assistants/asst_nhxgDqo6qGQapC8t5lPpo7kB", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca6f2ceca334-SEA", + "CF-RAY": "996e2d707a3708e3-SEA", "Connection": "keep-alive", - "Content-Length": "387", + "Content-Length": "382", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:22 GMT", + "Date": "Thu, 30 Oct 2025 21:59:02 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "308", + "openai-processing-ms": "336", "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": "354", + "x-envoy-upstream-service-time": "347", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_GcOQbWNpdlX6hpuNjPeCH5bv", + "id": "asst_nhxgDqo6qGQapC8t5lPpo7kB", "object": "assistant", - "created_at": 1758061641, + "created_at": 1761861541, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -239,7 +244,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_GcOQbWNpdlX6hpuNjPeCH5bv", + "RequestUri": "https://api.openai.com/v1/assistants/asst_nhxgDqo6qGQapC8t5lPpo7kB", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -247,7 +252,7 @@ "Content-Length": "58", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "metadata": { @@ -258,28 +263,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca71eedda334-SEA", + "CF-RAY": "996e2d733d0a08e3-SEA", "Connection": "keep-alive", - "Content-Length": "389", + "Content-Length": "384", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:22 GMT", + "Date": "Thu, 30 Oct 2025 21:59:03 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "262", + "openai-processing-ms": "285", "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": "266", + "x-envoy-upstream-service-time": "289", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_GcOQbWNpdlX6hpuNjPeCH5bv", + "id": "asst_nhxgDqo6qGQapC8t5lPpo7kB", "object": "assistant", - "created_at": 1758061641, + "created_at": 1761861541, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -299,38 +305,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca7428c7a334-SEA", + "CF-RAY": "996e2d759f3508e3-SEA", "Connection": "keep-alive", - "Content-Length": "9574", + "Content-Length": "15946", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:23 GMT", + "Date": "Thu, 30 Oct 2025 21:59:04 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "891", + "openai-processing-ms": "1203", "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": "897", + "x-envoy-upstream-service-time": "1212", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_GcOQbWNpdlX6hpuNjPeCH5bv", + "id": "asst_nhxgDqo6qGQapC8t5lPpo7kB", "object": "assistant", - "created_at": 1758061641, + "created_at": 1761861541, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -343,12 +350,12 @@ "response_format": "auto" }, { - "id": "asst_nI7dfdsVjTiLR2j0rVC6szM8", + "id": "asst_BFMmpHsel3a7MuFuKKY9i5uG", "object": "assistant", - "created_at": 1758061628, + "created_at": 1761861530, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -372,85 +379,95 @@ "response_format": "auto" }, { - "id": "asst_SfPyHp1sqcjZ6tJ1xDpWYCv8", + "id": "asst_CMtfUyymzFuBZRIdeRBYmCx8", "object": "assistant", - "created_at": 1758061374, + "created_at": 1761861469, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", + "model": "gpt-4o", + "instructions": null, "tools": [ { - "type": "code_interpreter" + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } } ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, "tool_resources": { - "code_interpreter": { - "file_ids": [] + "file_search": { + "vector_store_ids": [ + "vs_6903df5dce008191b059c1b487f8e60b" + ] } }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_FyuFvXNt2FDXGQqiJR420WMd", + "id": "asst_6QpiQpj2J3uuCjD1q83xdnxS", "object": "assistant", - "created_at": 1758061370, + "created_at": 1761861431, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "code_interpreter": { + "file_ids": [] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_FuBWsicv2aHJDFvs832IS1qZ", + "id": "asst_cLrDSF7FyYcUJOkh4dUGRSM3", "object": "assistant", - "created_at": 1758061364, + "created_at": 1761861426, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, - "metadata": { - "test_metadata_cleanup_eligible": "goodbye!" + "tool_resources": { + "code_interpreter": { + "file_ids": [] + } }, + "metadata": {}, "response_format": "auto" }, { - "id": "asst_qOYs24iW2d6GDju02iD0Dbbk", + "id": "asst_ov57bmgAMJS1t7k8vbUbn4WM", "object": "assistant", - "created_at": 1758061356, + "created_at": 1761861424, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, - "tools": [ - { - "type": "function", - "function": { - "name": "get_current_weather", - "description": "Gets the user's current weather", - "parameters": { - "type": "object", - "properties": {} - }, - "strict": false - } - } - ], + "tools": [], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -459,12 +476,12 @@ "response_format": "auto" }, { - "id": "asst_PfSlmm74UKWDOPCUAVRSypPW", + "id": "asst_mfpEDKz4cksL53EZEFHThET5", "object": "assistant", - "created_at": 1758061263, + "created_at": 1761861420, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -475,56 +492,63 @@ "response_format": "auto" }, { - "id": "asst_ELtCM3OCfAjvglorwvaRCIhT", + "id": "asst_FZZyY4i1na61o11QCRrmnApz", "object": "assistant", - "created_at": 1758061260, + "created_at": 1761861415, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, "tool_resources": {}, - "metadata": {}, - "response_format": { - "type": "text" - } + "metadata": { + "test_metadata_cleanup_eligible": "goodbye!" + }, + "response_format": "auto" }, { - "id": "asst_dLPIFWfkOnxv7UzCvquhMpD6", + "id": "asst_9CXNIUo12wTj15sYQbuz9WVg", "object": "assistant", - "created_at": 1758061210, + "created_at": 1761861414, "name": null, "description": null, "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], + "instructions": null, + "tools": [], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": { - "code_interpreter": { - "file_ids": [] - } + "tool_resources": {}, + "metadata": { + "test_metadata_cleanup_eligible": "goodbye!" }, - "metadata": {}, "response_format": "auto" }, { - "id": "asst_kDGtJ3AIPgIx4LhdDveU6ZPz", + "id": "asst_p9vso5zNBWYhszrpfuI0oflP", "object": "assistant", - "created_at": 1758061206, - "name": "Test Assistant 9", + "created_at": 1761861404, + "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, - "tools": [], + "tools": [ + { + "type": "function", + "function": { + "name": "get_current_weather", + "description": "Gets the user's current weather", + "parameters": { + "type": "object", + "properties": {} + }, + "strict": false + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -533,14 +557,27 @@ "response_format": "auto" }, { - "id": "asst_BysYCC1kJDOiMUwiDIHF0Loh", + "id": "asst_9QXzHHD6tBNBg02eaKGzgksj", "object": "assistant", - "created_at": 1758061205, - "name": "Test Assistant 8", + "created_at": 1761861404, + "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, - "tools": [], + "tools": [ + { + "type": "function", + "function": { + "name": "get_current_weather", + "description": "Gets the user's current weather", + "parameters": { + "type": "object", + "properties": {} + }, + "strict": false + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -549,10 +586,10 @@ "response_format": "auto" }, { - "id": "asst_U7DCveEO3N03MUxMacpu1v5i", + "id": "asst_GFm9NYzaCBOFj6JCO5YiyxgK", "object": "assistant", - "created_at": 1758061205, - "name": "Test Assistant 7", + "created_at": 1761859909, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, @@ -565,94 +602,226 @@ "response_format": "auto" }, { - "id": "asst_OU7NUSOoWPD6yrmcxQ6Hw9mq", + "id": "asst_ibprFwDnf2m5pyHfnZYnK2YS", "object": "assistant", - "created_at": 1758061205, - "name": "Test Assistant 6", + "created_at": 1761859108, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, - "tools": [], + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_6903d6255da88191b03b2a239b012c9c" + ] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_ccohmGo8pYWH4YOlLJXYnenb", + "id": "asst_h37hTT3TEPeR4WuWSPonbsCA", "object": "assistant", - "created_at": 1758061203, - "name": "Test Assistant 5", + "created_at": 1761858683, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, - "tools": [], + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_6903d47c91ac819186bfd71de29e31c1" + ] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_ojTnw9MrPnYRFgcfsNiA0C3B", + "id": "asst_suoi0yds3HYiYtrQulBF3QvB", "object": "assistant", - "created_at": 1758061203, - "name": "Test Assistant 4", + "created_at": 1761858520, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, - "tools": [], + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_6903d3d8f4d88191982d86110760b681" + ] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_J8T4dFzqyWylM3c8qUZYuhhQ", + "id": "asst_XQU4QvdATgA1zrRU3YW2sE75", "object": "assistant", - "created_at": 1758061202, - "name": "Test Assistant 3", + "created_at": 1761858470, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, - "tools": [], + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_6903d3a6cb588191bcb33feffa6f76e3" + ] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_yNXpxjlhuNhZGHaRuBCLnlf2", + "id": "asst_XASgAgsMe3RWTQ0qSM4ixgMh", "object": "assistant", - "created_at": 1758061202, - "name": "Test Assistant 2", + "created_at": 1760395501, + "name": "Example: Contoso sales RAG", "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You are an assistant that looks up sales data and helps visualize the information based on user queries. When asked to generate a graph, chart, or other visualization, use the code interpreter tool to do so.", + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + }, + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_68ed80edb5588191b6cf9058269f5a6e" + ] + }, + "code_interpreter": { + "file_ids": [] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_bCHgKAM38COqRwBjTyNGUzg2", + "id": "asst_EBIoKLJ4qgf3DuTNxvLE5lUZ", "object": "assistant", - "created_at": 1758061201, - "name": "Test Assistant 1", + "created_at": 1760124470, + "name": "Example: Function Calling", "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4-turbo", + "instructions": "Don't make assumptions about what values to plug into functions. Ask for clarification if a user request is ambiguous.", + "tools": [ + { + "type": "function", + "function": { + "name": "get_current_location", + "description": "Get the user's current location", + "parameters": { + "type": "object", + "properties": {} + }, + "strict": false + } + }, + { + "type": "function", + "function": { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. Boston, MA" + }, + "unit": { + "type": "string", + "enum": [ + "celsius", + "fahrenheit" + ], + "description": "The temperature unit to use. Infer this from the specified location." + } + }, + "required": [ + "location" + ] + }, + "strict": false + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -661,14 +830,55 @@ "response_format": "auto" }, { - "id": "asst_W62feRyLGx6pukNp4EnbZzCS", + "id": "asst_hEIZBIKYoQiWjM4L5cqwBBUm", "object": "assistant", - "created_at": 1758061201, - "name": "Test Assistant 0", + "created_at": 1760124457, + "name": "Example: Function Calling", "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4-turbo", + "instructions": "Don't make assumptions about what values to plug into functions. Ask for clarification if a user request is ambiguous.", + "tools": [ + { + "type": "function", + "function": { + "name": "get_current_location", + "description": "Get the user's current location", + "parameters": { + "type": "object", + "properties": {} + }, + "strict": false + } + }, + { + "type": "function", + "function": { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. Boston, MA" + }, + "unit": { + "type": "string", + "enum": [ + "celsius", + "fahrenheit" + ], + "description": "The temperature unit to use. Infer this from the specified location." + } + }, + "required": [ + "location" + ] + }, + "strict": false + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -677,24 +887,47 @@ "response_format": "auto" }, { - "id": "asst_lQBqCRgnTD9v80w0y6EMzWDG", + "id": "asst_RnX9ahcRL24YODTUas2T0Nm0", "object": "assistant", - "created_at": 1758061197, - "name": "Test Assistant 9", + "created_at": 1758657223, + "name": "Example: Contoso sales RAG", "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You are an assistant that looks up sales data and helps visualize the information based on user queries. When asked to generate a graph, chart, or other visualization, use the code interpreter tool to do so.", + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + }, + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_68d2fac719348191b8201ca2e66e3e8c" + ] + }, + "code_interpreter": { + "file_ids": [] + } + }, "metadata": {}, "response_format": "auto" } ], - "first_id": "asst_GcOQbWNpdlX6hpuNjPeCH5bv", - "last_id": "asst_lQBqCRgnTD9v80w0y6EMzWDG", + "first_id": "asst_nhxgDqo6qGQapC8t5lPpo7kB", + "last_id": "asst_RnX9ahcRL24YODTUas2T0Nm0", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/BasicAssistantOperationsWorkAsync.json b/tests/SessionRecords/AssistantsTests/BasicAssistantOperationsWorkAsync.json index b1e9dd5b8..fd3374131 100644 --- a/tests/SessionRecords/AssistantsTests/BasicAssistantOperationsWorkAsync.json +++ b/tests/SessionRecords/AssistantsTests/BasicAssistantOperationsWorkAsync.json @@ -6,40 +6,41 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "23", + "Content-Length": "18", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini" + "model": "gpt-4o" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d18a1de0a334-SEA", + "CF-RAY": "996e341e0abc08e3-SEA", "Connection": "keep-alive", - "Content-Length": "337", + "Content-Length": "332", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:13 GMT", + "Date": "Thu, 30 Oct 2025 22:03:36 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "188", + "openai-processing-ms": "402", "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": "194", + "x-envoy-upstream-service-time": "406", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_9nxqYFp9xtxpeTbJCCwMbYGo", + "id": "asst_G5sKCeZG8TpTN7gDBpfj9Umj", "object": "assistant", - "created_at": 1758061933, + "created_at": 1761861816, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -51,7 +52,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_9nxqYFp9xtxpeTbJCCwMbYGo", + "RequestUri": "https://api.openai.com/v1/assistants/asst_G5sKCeZG8TpTN7gDBpfj9Umj", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -59,7 +60,7 @@ "Content-Length": "30", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "name": "test assistant name" @@ -68,28 +69,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d18bef7fa334-SEA", + "CF-RAY": "996e34211dcf08e3-SEA", "Connection": "keep-alive", - "Content-Length": "354", + "Content-Length": "349", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:13 GMT", + "Date": "Thu, 30 Oct 2025 22:03:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "467", + "openai-processing-ms": "436", "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": "487", + "x-envoy-upstream-service-time": "443", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_9nxqYFp9xtxpeTbJCCwMbYGo", + "id": "asst_G5sKCeZG8TpTN7gDBpfj9Umj", "object": "assistant", - "created_at": 1758061933, + "created_at": 1761861816, "name": "test assistant name", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -101,36 +103,37 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_9nxqYFp9xtxpeTbJCCwMbYGo", + "RequestUri": "https://api.openai.com/v1/assistants/asst_G5sKCeZG8TpTN7gDBpfj9Umj", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d18f8a4ea334-SEA", + "CF-RAY": "996e3424697708e3-SEA", "Connection": "keep-alive", "Content-Length": "95", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:14 GMT", + "Date": "Thu, 30 Oct 2025 22:03:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "517", + "openai-processing-ms": "476", "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": "533", + "x-envoy-upstream-service-time": "511", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_9nxqYFp9xtxpeTbJCCwMbYGo", + "id": "asst_G5sKCeZG8TpTN7gDBpfj9Umj", "object": "assistant.deleted", "deleted": true } @@ -141,13 +144,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "78", + "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "metadata": { "test_metadata_cleanup_eligible": "hello!" } @@ -156,28 +159,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d1938da7a334-SEA", + "CF-RAY": "996e34282dd808e3-SEA", "Connection": "keep-alive", - "Content-Length": "387", + "Content-Length": "382", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:14 GMT", + "Date": "Thu, 30 Oct 2025 22:03:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "170", + "openai-processing-ms": "175", "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": "173", + "x-envoy-upstream-service-time": "178", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_HUuidlcdCe8mYc6iTXAqtuVK", + "id": "asst_7UjhUk3bK33iJqfox0v5WfdT", "object": "assistant", - "created_at": 1758061934, + "created_at": 1761861817, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -191,41 +195,42 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_HUuidlcdCe8mYc6iTXAqtuVK", + "RequestUri": "https://api.openai.com/v1/assistants/asst_7UjhUk3bK33iJqfox0v5WfdT", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1951ea9a334-SEA", + "CF-RAY": "996e3429ffd908e3-SEA", "Connection": "keep-alive", - "Content-Length": "387", + "Content-Length": "382", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:15 GMT", + "Date": "Thu, 30 Oct 2025 22:03:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "359", + "openai-processing-ms": "274", "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": "380", + "x-envoy-upstream-service-time": "279", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_HUuidlcdCe8mYc6iTXAqtuVK", + "id": "asst_7UjhUk3bK33iJqfox0v5WfdT", "object": "assistant", - "created_at": 1758061934, + "created_at": 1761861817, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -239,7 +244,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_HUuidlcdCe8mYc6iTXAqtuVK", + "RequestUri": "https://api.openai.com/v1/assistants/asst_7UjhUk3bK33iJqfox0v5WfdT", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -247,7 +252,7 @@ "Content-Length": "58", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "metadata": { @@ -258,28 +263,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d19808c1a334-SEA", + "CF-RAY": "996e342c49e508e3-SEA", "Connection": "keep-alive", - "Content-Length": "389", + "Content-Length": "384", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:15 GMT", + "Date": "Thu, 30 Oct 2025 22:03:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "256", + "openai-processing-ms": "314", "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": "260", + "x-envoy-upstream-service-time": "317", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_HUuidlcdCe8mYc6iTXAqtuVK", + "id": "asst_7UjhUk3bK33iJqfox0v5WfdT", "object": "assistant", - "created_at": 1758061934, + "created_at": 1761861817, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -299,38 +305,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d19a3a58a334-SEA", + "CF-RAY": "996e342ecca108e3-SEA", "Connection": "keep-alive", - "Content-Length": "9574", + "Content-Length": "15946", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:16 GMT", + "Date": "Thu, 30 Oct 2025 22:03:39 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "990", + "openai-processing-ms": "880", "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": "992", + "x-envoy-upstream-service-time": "885", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_HUuidlcdCe8mYc6iTXAqtuVK", + "id": "asst_7UjhUk3bK33iJqfox0v5WfdT", "object": "assistant", - "created_at": 1758061934, + "created_at": 1761861817, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -343,12 +350,12 @@ "response_format": "auto" }, { - "id": "asst_oq7Dtuk1vCVMs2I8FWywA53X", + "id": "asst_CfJdd8d7FTaC8peLEVJDY9Vu", "object": "assistant", - "created_at": 1758061924, + "created_at": 1761861804, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -372,85 +379,95 @@ "response_format": "auto" }, { - "id": "asst_SfPyHp1sqcjZ6tJ1xDpWYCv8", + "id": "asst_CMtfUyymzFuBZRIdeRBYmCx8", "object": "assistant", - "created_at": 1758061374, + "created_at": 1761861469, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", + "model": "gpt-4o", + "instructions": null, "tools": [ { - "type": "code_interpreter" + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } } ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, "tool_resources": { - "code_interpreter": { - "file_ids": [] + "file_search": { + "vector_store_ids": [ + "vs_6903df5dce008191b059c1b487f8e60b" + ] } }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_FyuFvXNt2FDXGQqiJR420WMd", + "id": "asst_6QpiQpj2J3uuCjD1q83xdnxS", "object": "assistant", - "created_at": 1758061370, + "created_at": 1761861431, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "code_interpreter": { + "file_ids": [] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_FuBWsicv2aHJDFvs832IS1qZ", + "id": "asst_cLrDSF7FyYcUJOkh4dUGRSM3", "object": "assistant", - "created_at": 1758061364, + "created_at": 1761861426, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, - "metadata": { - "test_metadata_cleanup_eligible": "goodbye!" + "tool_resources": { + "code_interpreter": { + "file_ids": [] + } }, + "metadata": {}, "response_format": "auto" }, { - "id": "asst_qOYs24iW2d6GDju02iD0Dbbk", + "id": "asst_ov57bmgAMJS1t7k8vbUbn4WM", "object": "assistant", - "created_at": 1758061356, + "created_at": 1761861424, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, - "tools": [ - { - "type": "function", - "function": { - "name": "get_current_weather", - "description": "Gets the user's current weather", - "parameters": { - "type": "object", - "properties": {} - }, - "strict": false - } - } - ], + "tools": [], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -459,12 +476,12 @@ "response_format": "auto" }, { - "id": "asst_PfSlmm74UKWDOPCUAVRSypPW", + "id": "asst_mfpEDKz4cksL53EZEFHThET5", "object": "assistant", - "created_at": 1758061263, + "created_at": 1761861420, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -475,56 +492,63 @@ "response_format": "auto" }, { - "id": "asst_ELtCM3OCfAjvglorwvaRCIhT", + "id": "asst_FZZyY4i1na61o11QCRrmnApz", "object": "assistant", - "created_at": 1758061260, + "created_at": 1761861415, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, "tool_resources": {}, - "metadata": {}, - "response_format": { - "type": "text" - } + "metadata": { + "test_metadata_cleanup_eligible": "goodbye!" + }, + "response_format": "auto" }, { - "id": "asst_dLPIFWfkOnxv7UzCvquhMpD6", + "id": "asst_9CXNIUo12wTj15sYQbuz9WVg", "object": "assistant", - "created_at": 1758061210, + "created_at": 1761861414, "name": null, "description": null, "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], + "instructions": null, + "tools": [], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": { - "code_interpreter": { - "file_ids": [] - } + "tool_resources": {}, + "metadata": { + "test_metadata_cleanup_eligible": "goodbye!" }, - "metadata": {}, "response_format": "auto" }, { - "id": "asst_kDGtJ3AIPgIx4LhdDveU6ZPz", + "id": "asst_p9vso5zNBWYhszrpfuI0oflP", "object": "assistant", - "created_at": 1758061206, - "name": "Test Assistant 9", + "created_at": 1761861404, + "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, - "tools": [], + "tools": [ + { + "type": "function", + "function": { + "name": "get_current_weather", + "description": "Gets the user's current weather", + "parameters": { + "type": "object", + "properties": {} + }, + "strict": false + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -533,14 +557,27 @@ "response_format": "auto" }, { - "id": "asst_BysYCC1kJDOiMUwiDIHF0Loh", + "id": "asst_9QXzHHD6tBNBg02eaKGzgksj", "object": "assistant", - "created_at": 1758061205, - "name": "Test Assistant 8", + "created_at": 1761861404, + "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, - "tools": [], + "tools": [ + { + "type": "function", + "function": { + "name": "get_current_weather", + "description": "Gets the user's current weather", + "parameters": { + "type": "object", + "properties": {} + }, + "strict": false + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -549,10 +586,10 @@ "response_format": "auto" }, { - "id": "asst_U7DCveEO3N03MUxMacpu1v5i", + "id": "asst_GFm9NYzaCBOFj6JCO5YiyxgK", "object": "assistant", - "created_at": 1758061205, - "name": "Test Assistant 7", + "created_at": 1761859909, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, @@ -565,94 +602,226 @@ "response_format": "auto" }, { - "id": "asst_OU7NUSOoWPD6yrmcxQ6Hw9mq", + "id": "asst_ibprFwDnf2m5pyHfnZYnK2YS", "object": "assistant", - "created_at": 1758061205, - "name": "Test Assistant 6", + "created_at": 1761859108, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, - "tools": [], + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_6903d6255da88191b03b2a239b012c9c" + ] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_ccohmGo8pYWH4YOlLJXYnenb", + "id": "asst_h37hTT3TEPeR4WuWSPonbsCA", "object": "assistant", - "created_at": 1758061203, - "name": "Test Assistant 5", + "created_at": 1761858683, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, - "tools": [], + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_6903d47c91ac819186bfd71de29e31c1" + ] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_ojTnw9MrPnYRFgcfsNiA0C3B", + "id": "asst_suoi0yds3HYiYtrQulBF3QvB", "object": "assistant", - "created_at": 1758061203, - "name": "Test Assistant 4", + "created_at": 1761858520, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, - "tools": [], + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_6903d3d8f4d88191982d86110760b681" + ] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_J8T4dFzqyWylM3c8qUZYuhhQ", + "id": "asst_XQU4QvdATgA1zrRU3YW2sE75", "object": "assistant", - "created_at": 1758061202, - "name": "Test Assistant 3", + "created_at": 1761858470, + "name": null, "description": null, "model": "gpt-4o-mini", "instructions": null, - "tools": [], + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_6903d3a6cb588191bcb33feffa6f76e3" + ] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_yNXpxjlhuNhZGHaRuBCLnlf2", + "id": "asst_XASgAgsMe3RWTQ0qSM4ixgMh", "object": "assistant", - "created_at": 1758061202, - "name": "Test Assistant 2", + "created_at": 1760395501, + "name": "Example: Contoso sales RAG", "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You are an assistant that looks up sales data and helps visualize the information based on user queries. When asked to generate a graph, chart, or other visualization, use the code interpreter tool to do so.", + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + }, + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_68ed80edb5588191b6cf9058269f5a6e" + ] + }, + "code_interpreter": { + "file_ids": [] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_bCHgKAM38COqRwBjTyNGUzg2", + "id": "asst_EBIoKLJ4qgf3DuTNxvLE5lUZ", "object": "assistant", - "created_at": 1758061201, - "name": "Test Assistant 1", + "created_at": 1760124470, + "name": "Example: Function Calling", "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4-turbo", + "instructions": "Don't make assumptions about what values to plug into functions. Ask for clarification if a user request is ambiguous.", + "tools": [ + { + "type": "function", + "function": { + "name": "get_current_location", + "description": "Get the user's current location", + "parameters": { + "type": "object", + "properties": {} + }, + "strict": false + } + }, + { + "type": "function", + "function": { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. Boston, MA" + }, + "unit": { + "type": "string", + "enum": [ + "celsius", + "fahrenheit" + ], + "description": "The temperature unit to use. Infer this from the specified location." + } + }, + "required": [ + "location" + ] + }, + "strict": false + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -661,14 +830,55 @@ "response_format": "auto" }, { - "id": "asst_W62feRyLGx6pukNp4EnbZzCS", + "id": "asst_hEIZBIKYoQiWjM4L5cqwBBUm", "object": "assistant", - "created_at": 1758061201, - "name": "Test Assistant 0", + "created_at": 1760124457, + "name": "Example: Function Calling", "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4-turbo", + "instructions": "Don't make assumptions about what values to plug into functions. Ask for clarification if a user request is ambiguous.", + "tools": [ + { + "type": "function", + "function": { + "name": "get_current_location", + "description": "Get the user's current location", + "parameters": { + "type": "object", + "properties": {} + }, + "strict": false + } + }, + { + "type": "function", + "function": { + "name": "get_current_weather", + "description": "Get the current weather in a given location", + "parameters": { + "type": "object", + "properties": { + "location": { + "type": "string", + "description": "The city and state, e.g. Boston, MA" + }, + "unit": { + "type": "string", + "enum": [ + "celsius", + "fahrenheit" + ], + "description": "The temperature unit to use. Infer this from the specified location." + } + }, + "required": [ + "location" + ] + }, + "strict": false + } + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, @@ -677,24 +887,47 @@ "response_format": "auto" }, { - "id": "asst_lQBqCRgnTD9v80w0y6EMzWDG", + "id": "asst_RnX9ahcRL24YODTUas2T0Nm0", "object": "assistant", - "created_at": 1758061197, - "name": "Test Assistant 9", + "created_at": 1758657223, + "name": "Example: Contoso sales RAG", "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You are an assistant that looks up sales data and helps visualize the information based on user queries. When asked to generate a graph, chart, or other visualization, use the code interpreter tool to do so.", + "tools": [ + { + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } + }, + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "file_search": { + "vector_store_ids": [ + "vs_68d2fac719348191b8201ca2e66e3e8c" + ] + }, + "code_interpreter": { + "file_ids": [] + } + }, "metadata": {}, "response_format": "auto" } ], - "first_id": "asst_HUuidlcdCe8mYc6iTXAqtuVK", - "last_id": "asst_lQBqCRgnTD9v80w0y6EMzWDG", + "first_id": "asst_7UjhUk3bK33iJqfox0v5WfdT", + "last_id": "asst_RnX9ahcRL24YODTUas2T0Nm0", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/BasicMessageOperationsWork.json b/tests/SessionRecords/AssistantsTests/BasicMessageOperationsWork.json index e37b02fba..06adfea9e 100644 --- a/tests/SessionRecords/AssistantsTests/BasicMessageOperationsWork.json +++ b/tests/SessionRecords/AssistantsTests/BasicMessageOperationsWork.json @@ -8,38 +8,39 @@ "Authorization": "Sanitized", "Content-Length": "0", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca7bcf44a334-SEA", + "CF-RAY": "996e2d7fd8ff08e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:24 GMT", + "Date": "Thu, 30 Oct 2025 21:59:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "171", + "openai-processing-ms": "200", "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": "177", + "x-envoy-upstream-service-time": "204", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_ETH8W59KS99yUcgWxQI1EnYJ", + "id": "thread_ohNJmn4u7fJZkzneQRbMe2KZ", "object": "thread", - "created_at": 1758061644, + "created_at": 1761861545, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_ETH8W59KS99yUcgWxQI1EnYJ/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_ohNJmn4u7fJZkzneQRbMe2KZ/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -47,7 +48,7 @@ "Content-Length": "41", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -57,27 +58,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca7d989ca334-SEA", + "CF-RAY": "996e2d81ba6d08e3-SEA", "Connection": "keep-alive", "Content-Length": "387", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:25 GMT", + "Date": "Thu, 30 Oct 2025 21:59:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "629", + "openai-processing-ms": "214", "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": "664", + "x-envoy-upstream-service-time": "218", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_Hztp8OC2OE58ODgqie6ulfYx", + "id": "msg_J716scMJumFtgFf7ElGbaAN3", "object": "thread.message", - "created_at": 1758061644, + "created_at": 1761861545, "assistant_id": null, - "thread_id": "thread_ETH8W59KS99yUcgWxQI1EnYJ", + "thread_id": "thread_ohNJmn4u7fJZkzneQRbMe2KZ", "run_id": null, "role": "user", "content": [ @@ -94,42 +96,43 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_ETH8W59KS99yUcgWxQI1EnYJ/messages/msg_Hztp8OC2OE58ODgqie6ulfYx", + "RequestUri": "https://api.openai.com/v1/threads/thread_ohNJmn4u7fJZkzneQRbMe2KZ/messages/msg_J716scMJumFtgFf7ElGbaAN3", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca832d3fa334-SEA", + "CF-RAY": "996e2d83ac9f08e3-SEA", "Connection": "keep-alive", "Content-Length": "99", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:25 GMT", + "Date": "Thu, 30 Oct 2025 21:59:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "311", + "openai-processing-ms": "310", "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": "317", + "x-envoy-upstream-service-time": "313", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_Hztp8OC2OE58ODgqie6ulfYx", + "id": "msg_J716scMJumFtgFf7ElGbaAN3", "object": "thread.message.deleted", "deleted": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_ETH8W59KS99yUcgWxQI1EnYJ/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_ohNJmn4u7fJZkzneQRbMe2KZ/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -137,7 +140,7 @@ "Content-Length": "97", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -150,27 +153,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca85af7ea334-SEA", + "CF-RAY": "996e2d863f6508e3-SEA", "Connection": "keep-alive", "Content-Length": "438", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:26 GMT", + "Date": "Thu, 30 Oct 2025 21:59:06 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "225", + "openai-processing-ms": "554", "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": "238", + "x-envoy-upstream-service-time": "580", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_sexhmrJH6Jzp0Zhet4XNK7VI", + "id": "msg_9xCFzXJYpT59URyaZlz49jGE", "object": "thread.message", - "created_at": 1758061645, + "created_at": 1761861546, "assistant_id": null, - "thread_id": "thread_ETH8W59KS99yUcgWxQI1EnYJ", + "thread_id": "thread_ohNJmn4u7fJZkzneQRbMe2KZ", "run_id": null, "role": "user", "content": [ @@ -189,40 +193,41 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_ETH8W59KS99yUcgWxQI1EnYJ/messages/msg_sexhmrJH6Jzp0Zhet4XNK7VI", + "RequestUri": "https://api.openai.com/v1/threads/thread_ohNJmn4u7fJZkzneQRbMe2KZ/messages/msg_9xCFzXJYpT59URyaZlz49jGE", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca87a8e4a334-SEA", + "CF-RAY": "996e2d8a9d2308e3-SEA", "Connection": "keep-alive", "Content-Length": "438", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:26 GMT", + "Date": "Thu, 30 Oct 2025 21:59:06 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "90", + "openai-processing-ms": "86", "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": "99", + "x-envoy-upstream-service-time": "95", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_sexhmrJH6Jzp0Zhet4XNK7VI", + "id": "msg_9xCFzXJYpT59URyaZlz49jGE", "object": "thread.message", - "created_at": 1758061645, + "created_at": 1761861546, "assistant_id": null, - "thread_id": "thread_ETH8W59KS99yUcgWxQI1EnYJ", + "thread_id": "thread_ohNJmn4u7fJZkzneQRbMe2KZ", "run_id": null, "role": "user", "content": [ @@ -241,7 +246,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_ETH8W59KS99yUcgWxQI1EnYJ/messages/msg_sexhmrJH6Jzp0Zhet4XNK7VI", + "RequestUri": "https://api.openai.com/v1/threads/thread_ohNJmn4u7fJZkzneQRbMe2KZ/messages/msg_9xCFzXJYpT59URyaZlz49jGE", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -249,7 +254,7 @@ "Content-Length": "43", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "metadata": { @@ -260,27 +265,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca88ea4aa334-SEA", + "CF-RAY": "996e2d8cafe508e3-SEA", "Connection": "keep-alive", "Content-Length": "423", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:26 GMT", + "Date": "Thu, 30 Oct 2025 21:59:07 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "93", + "openai-processing-ms": "129", "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": "97", + "x-envoy-upstream-service-time": "132", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_sexhmrJH6Jzp0Zhet4XNK7VI", + "id": "msg_9xCFzXJYpT59URyaZlz49jGE", "object": "thread.message", - "created_at": 1758061645, + "created_at": 1761861546, "assistant_id": null, - "thread_id": "thread_ETH8W59KS99yUcgWxQI1EnYJ", + "thread_id": "thread_ohNJmn4u7fJZkzneQRbMe2KZ", "run_id": null, "role": "user", "content": [ @@ -299,43 +305,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_ETH8W59KS99yUcgWxQI1EnYJ/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_ohNJmn4u7fJZkzneQRbMe2KZ/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca8a2b56a334-SEA", + "CF-RAY": "996e2d8e19e108e3-SEA", "Connection": "keep-alive", "Content-Length": "666", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:26 GMT", + "Date": "Thu, 30 Oct 2025 21:59:07 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "69", + "openai-processing-ms": "56", "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": "72", + "x-envoy-upstream-service-time": "59", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_sexhmrJH6Jzp0Zhet4XNK7VI", + "id": "msg_9xCFzXJYpT59URyaZlz49jGE", "object": "thread.message", - "created_at": 1758061645, + "created_at": 1761861546, "assistant_id": null, - "thread_id": "thread_ETH8W59KS99yUcgWxQI1EnYJ", + "thread_id": "thread_ohNJmn4u7fJZkzneQRbMe2KZ", "run_id": null, "role": "user", "content": [ @@ -353,8 +360,8 @@ } } ], - "first_id": "msg_sexhmrJH6Jzp0Zhet4XNK7VI", - "last_id": "msg_sexhmrJH6Jzp0Zhet4XNK7VI", + "first_id": "msg_9xCFzXJYpT59URyaZlz49jGE", + "last_id": "msg_9xCFzXJYpT59URyaZlz49jGE", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/BasicMessageOperationsWorkAsync.json b/tests/SessionRecords/AssistantsTests/BasicMessageOperationsWorkAsync.json index 2481a1396..0c53e9cd5 100644 --- a/tests/SessionRecords/AssistantsTests/BasicMessageOperationsWorkAsync.json +++ b/tests/SessionRecords/AssistantsTests/BasicMessageOperationsWorkAsync.json @@ -8,38 +8,39 @@ "Authorization": "Sanitized", "Content-Length": "0", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1a1c827a334-SEA", + "CF-RAY": "996e34358b6008e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:19 GMT", + "Date": "Thu, 30 Oct 2025 22:03:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "2113", + "openai-processing-ms": "200", "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": "2154", + "x-envoy-upstream-service-time": "225", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_OyWne0mV0W1j1ICudWPxzJ4v", + "id": "thread_5W1qnOJkBEBmqRtoGr8f7yhf", "object": "thread", - "created_at": 1758061937, + "created_at": 1761861819, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_OyWne0mV0W1j1ICudWPxzJ4v/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_5W1qnOJkBEBmqRtoGr8f7yhf/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -47,7 +48,7 @@ "Content-Length": "41", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -57,27 +58,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d1b01b05a334-SEA", + "CF-RAY": "996e34379d9808e3-SEA", "Connection": "keep-alive", "Content-Length": "387", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:19 GMT", + "Date": "Thu, 30 Oct 2025 22:03:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "467", + "openai-processing-ms": "150", "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": "480", + "x-envoy-upstream-service-time": "154", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_j9juLgGNshtNStzl9SoSKJAI", + "id": "msg_LZHUKdYMCCv6oxIPyNHcSNzc", "object": "thread.message", - "created_at": 1758061939, + "created_at": 1761861820, "assistant_id": null, - "thread_id": "thread_OyWne0mV0W1j1ICudWPxzJ4v", + "thread_id": "thread_5W1qnOJkBEBmqRtoGr8f7yhf", "run_id": null, "role": "user", "content": [ @@ -94,42 +96,43 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_OyWne0mV0W1j1ICudWPxzJ4v/messages/msg_j9juLgGNshtNStzl9SoSKJAI", + "RequestUri": "https://api.openai.com/v1/threads/thread_5W1qnOJkBEBmqRtoGr8f7yhf/messages/msg_LZHUKdYMCCv6oxIPyNHcSNzc", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1b39de0a334-SEA", + "CF-RAY": "996e34393f2808e3-SEA", "Connection": "keep-alive", "Content-Length": "99", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:20 GMT", + "Date": "Thu, 30 Oct 2025 22:03:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "874", + "openai-processing-ms": "271", "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": "948", + "x-envoy-upstream-service-time": "275", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_j9juLgGNshtNStzl9SoSKJAI", + "id": "msg_LZHUKdYMCCv6oxIPyNHcSNzc", "object": "thread.message.deleted", "deleted": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_OyWne0mV0W1j1ICudWPxzJ4v/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_5W1qnOJkBEBmqRtoGr8f7yhf/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -137,7 +140,7 @@ "Content-Length": "97", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -150,27 +153,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d1ba3b85a334-SEA", + "CF-RAY": "996e343b898c08e3-SEA", "Connection": "keep-alive", "Content-Length": "438", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:21 GMT", + "Date": "Thu, 30 Oct 2025 22:03:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "182", + "openai-processing-ms": "213", "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": "185", + "x-envoy-upstream-service-time": "217", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_d8KnM0eF8wGgOcxdil7CJpLL", + "id": "msg_zeFb8QbCjckAe5SsOJhmHRsl", "object": "thread.message", - "created_at": 1758061940, + "created_at": 1761861820, "assistant_id": null, - "thread_id": "thread_OyWne0mV0W1j1ICudWPxzJ4v", + "thread_id": "thread_5W1qnOJkBEBmqRtoGr8f7yhf", "run_id": null, "role": "user", "content": [ @@ -189,40 +193,41 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_OyWne0mV0W1j1ICudWPxzJ4v/messages/msg_d8KnM0eF8wGgOcxdil7CJpLL", + "RequestUri": "https://api.openai.com/v1/threads/thread_5W1qnOJkBEBmqRtoGr8f7yhf/messages/msg_zeFb8QbCjckAe5SsOJhmHRsl", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1bbecf2a334-SEA", + "CF-RAY": "996e343d8b7208e3-SEA", "Connection": "keep-alive", "Content-Length": "438", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:21 GMT", + "Date": "Thu, 30 Oct 2025 22:03:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "57", + "openai-processing-ms": "150", "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": "60", + "x-envoy-upstream-service-time": "166", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_d8KnM0eF8wGgOcxdil7CJpLL", + "id": "msg_zeFb8QbCjckAe5SsOJhmHRsl", "object": "thread.message", - "created_at": 1758061940, + "created_at": 1761861820, "assistant_id": null, - "thread_id": "thread_OyWne0mV0W1j1ICudWPxzJ4v", + "thread_id": "thread_5W1qnOJkBEBmqRtoGr8f7yhf", "run_id": null, "role": "user", "content": [ @@ -241,7 +246,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_OyWne0mV0W1j1ICudWPxzJ4v/messages/msg_d8KnM0eF8wGgOcxdil7CJpLL", + "RequestUri": "https://api.openai.com/v1/threads/thread_5W1qnOJkBEBmqRtoGr8f7yhf/messages/msg_zeFb8QbCjckAe5SsOJhmHRsl", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -249,7 +254,7 @@ "Content-Length": "43", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "metadata": { @@ -260,27 +265,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d1bcddc6a334-SEA", + "CF-RAY": "996e343f4d6508e3-SEA", "Connection": "keep-alive", "Content-Length": "423", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:21 GMT", + "Date": "Thu, 30 Oct 2025 22:03:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "134", + "openai-processing-ms": "120", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141", + "x-envoy-upstream-service-time": "123", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_d8KnM0eF8wGgOcxdil7CJpLL", + "id": "msg_zeFb8QbCjckAe5SsOJhmHRsl", "object": "thread.message", - "created_at": 1758061940, + "created_at": 1761861820, "assistant_id": null, - "thread_id": "thread_OyWne0mV0W1j1ICudWPxzJ4v", + "thread_id": "thread_5W1qnOJkBEBmqRtoGr8f7yhf", "run_id": null, "role": "user", "content": [ @@ -299,43 +305,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_OyWne0mV0W1j1ICudWPxzJ4v/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_5W1qnOJkBEBmqRtoGr8f7yhf/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1be5ee9a334-SEA", + "CF-RAY": "996e3440be9208e3-SEA", "Connection": "keep-alive", "Content-Length": "666", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:23 GMT", + "Date": "Thu, 30 Oct 2025 22:03:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1427", + "openai-processing-ms": "50", "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": "1452", + "x-envoy-upstream-service-time": "53", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_d8KnM0eF8wGgOcxdil7CJpLL", + "id": "msg_zeFb8QbCjckAe5SsOJhmHRsl", "object": "thread.message", - "created_at": 1758061940, + "created_at": 1761861820, "assistant_id": null, - "thread_id": "thread_OyWne0mV0W1j1ICudWPxzJ4v", + "thread_id": "thread_5W1qnOJkBEBmqRtoGr8f7yhf", "run_id": null, "role": "user", "content": [ @@ -353,8 +360,8 @@ } } ], - "first_id": "msg_d8KnM0eF8wGgOcxdil7CJpLL", - "last_id": "msg_d8KnM0eF8wGgOcxdil7CJpLL", + "first_id": "msg_zeFb8QbCjckAe5SsOJhmHRsl", + "last_id": "msg_zeFb8QbCjckAe5SsOJhmHRsl", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/BasicRunOperationsWork.json b/tests/SessionRecords/AssistantsTests/BasicRunOperationsWork.json index 750529984..382bbe6c0 100644 --- a/tests/SessionRecords/AssistantsTests/BasicRunOperationsWork.json +++ b/tests/SessionRecords/AssistantsTests/BasicRunOperationsWork.json @@ -6,40 +6,41 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "23", + "Content-Length": "18", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini" + "model": "gpt-4o" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca8bec7ca334-SEA", + "CF-RAY": "996e2d8fbbf908e3-SEA", "Connection": "keep-alive", - "Content-Length": "337", + "Content-Length": "332", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:27 GMT", + "Date": "Thu, 30 Oct 2025 21:59:07 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "240", + "openai-processing-ms": "239", "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": "256", + "x-envoy-upstream-service-time": "246", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_zJE0t3c0L56E5ieEwJItn8eL", + "id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", "object": "assistant", - "created_at": 1758061647, + "created_at": 1761861547, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -58,63 +59,65 @@ "Authorization": "Sanitized", "Content-Length": "0", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca8fffa4a334-SEA", + "CF-RAY": "996e2d91ce4808e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:27 GMT", + "Date": "Thu, 30 Oct 2025 21:59:08 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "152", + "openai-processing-ms": "408", "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": "158", + "x-envoy-upstream-service-time": "443", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "object": "thread", - "created_at": 1758061647, + "created_at": 1761861548, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/runs", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/runs", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca919903a334-SEA", + "CF-RAY": "996e2d95298b08e3-SEA", "Connection": "keep-alive", "Content-Length": "96", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:27 GMT", + "Date": "Thu, 30 Oct 2025 21:59:08 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "33", + "openai-processing-ms": "26", "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": "36", + "x-envoy-upstream-service-time": "31", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { @@ -126,7 +129,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -134,7 +137,7 @@ "Content-Length": "45", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -144,27 +147,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca92b9fba334-SEA", + "CF-RAY": "996e2d95da4708e3-SEA", "Connection": "keep-alive", "Content-Length": "391", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:28 GMT", + "Date": "Thu, 30 Oct 2025 21:59:08 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "194", + "openai-processing-ms": "266", "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": "198", + "x-envoy-upstream-service-time": "276", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_tWPrgEZNKFhBLuBpdIGawjdD", + "id": "msg_v7weAUDitV13UlegLU3QwV0w", "object": "thread.message", - "created_at": 1758061647, + "created_at": 1761861548, "assistant_id": null, - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "run_id": null, "role": "user", "content": [ @@ -181,7 +185,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -189,46 +193,47 @@ "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_zJE0t3c0L56E5ieEwJItn8eL", + "assistant_id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", "additional_messages": [] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca948b62a334-SEA", + "CF-RAY": "996e2d983ce008e3-SEA", "Connection": "keep-alive", - "Content-Length": "832", + "Content-Length": "827", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:29 GMT", + "Date": "Thu, 30 Oct 2025 21:59:10 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "924", + "openai-processing-ms": "1611", "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": "928", + "x-envoy-upstream-service-time": "1624", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "id": "run_qESlsiZnlYfeC0h6lJTOMVcy", "object": "thread.run", - "created_at": 1758061648, - "assistant_id": "asst_zJE0t3c0L56E5ieEwJItn8eL", - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "created_at": 1761861549, + "assistant_id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "status": "queued", "started_at": null, - "expires_at": 1758062248, + "expires_at": 1761862149, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -250,49 +255,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/runs/run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/runs/run_qESlsiZnlYfeC0h6lJTOMVcy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca9cb9f4a334-SEA", + "CF-RAY": "996e2da3088508e3-SEA", "Connection": "keep-alive", - "Content-Length": "832", + "Content-Length": "827", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:29 GMT", + "Date": "Thu, 30 Oct 2025 21:59:10 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "139", + "openai-processing-ms": "275", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141", + "x-envoy-upstream-service-time": "284", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "id": "run_qESlsiZnlYfeC0h6lJTOMVcy", "object": "thread.run", - "created_at": 1758061648, - "assistant_id": "asst_zJE0t3c0L56E5ieEwJItn8eL", - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "created_at": 1761861549, + "assistant_id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "status": "queued", "started_at": null, - "expires_at": 1758062248, + "expires_at": 1761862149, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -314,52 +320,53 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/runs", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/runs", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca9e3b02a334-SEA", + "CF-RAY": "996e2da57ba208e3-SEA", "Connection": "keep-alive", - "Content-Length": "1120", + "Content-Length": "1115", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:29 GMT", + "Date": "Thu, 30 Oct 2025 21:59:11 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "172", + "openai-processing-ms": "141", "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": "175", + "x-envoy-upstream-service-time": "144", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "id": "run_qESlsiZnlYfeC0h6lJTOMVcy", "object": "thread.run", - "created_at": 1758061648, - "assistant_id": "asst_zJE0t3c0L56E5ieEwJItn8eL", - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "created_at": 1761861549, + "assistant_id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "status": "queued", "started_at": null, - "expires_at": 1758062248, + "expires_at": 1761862149, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -380,49 +387,50 @@ "parallel_tool_calls": true } ], - "first_id": "run_2sQrIXWVsa9ZFvm4mj0N1rWu", - "last_id": "run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "first_id": "run_qESlsiZnlYfeC0h6lJTOMVcy", + "last_id": "run_qESlsiZnlYfeC0h6lJTOMVcy", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ca9fdc5ea334-SEA", + "CF-RAY": "996e2da6fd0308e3-SEA", "Connection": "keep-alive", "Content-Length": "623", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:30 GMT", + "Date": "Thu, 30 Oct 2025 21:59:11 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "60", + "openai-processing-ms": "89", "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": "66", + "x-envoy-upstream-service-time": "102", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_tWPrgEZNKFhBLuBpdIGawjdD", + "id": "msg_v7weAUDitV13UlegLU3QwV0w", "object": "thread.message", - "created_at": 1758061647, + "created_at": 1761861548, "assistant_id": null, - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "run_id": null, "role": "user", "content": [ @@ -438,55 +446,56 @@ "metadata": {} } ], - "first_id": "msg_tWPrgEZNKFhBLuBpdIGawjdD", - "last_id": "msg_tWPrgEZNKFhBLuBpdIGawjdD", + "first_id": "msg_v7weAUDitV13UlegLU3QwV0w", + "last_id": "msg_v7weAUDitV13UlegLU3QwV0w", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/runs/run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/runs/run_qESlsiZnlYfeC0h6lJTOMVcy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803caa71a33a334-SEA", + "CF-RAY": "996e2dae7c7108e3-SEA", "Connection": "keep-alive", - "Content-Length": "843", + "Content-Length": "838", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:31 GMT", + "Date": "Thu, 30 Oct 2025 21:59:13 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "162", + "openai-processing-ms": "649", "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": "165", + "x-envoy-upstream-service-time": "701", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "id": "run_qESlsiZnlYfeC0h6lJTOMVcy", "object": "thread.run", - "created_at": 1758061648, - "assistant_id": "asst_zJE0t3c0L56E5ieEwJItn8eL", - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "created_at": 1761861549, + "assistant_id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "status": "in_progress", - "started_at": 1758061649, - "expires_at": 1758062248, + "started_at": 1761861551, + "expires_at": 1761862149, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -508,49 +517,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/runs/run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/runs/run_qESlsiZnlYfeC0h6lJTOMVcy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803caaef82da334-SEA", + "CF-RAY": "996e2db9bf9208e3-SEA", "Connection": "keep-alive", - "Content-Length": "1051", + "Content-Length": "1046", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:32 GMT", + "Date": "Thu, 30 Oct 2025 21:59:14 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "203", + "openai-processing-ms": "189", "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": "211", + "x-envoy-upstream-service-time": "193", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "id": "run_qESlsiZnlYfeC0h6lJTOMVcy", "object": "thread.run", - "created_at": 1758061648, - "assistant_id": "asst_zJE0t3c0L56E5ieEwJItn8eL", - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "created_at": 1761861549, + "assistant_id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "status": "completed", - "started_at": 1758061649, + "started_at": 1761861551, "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": 1758061651, + "completed_at": 1761861552, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -582,44 +592,45 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_4RT7nzLagSqTvWaF3qTAVj1g/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_VVo2xsJmQsaNxuYdqPloUXQm/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803cab0d9a7a334-SEA", + "CF-RAY": "996e2dbb794d08e3-SEA", "Connection": "keep-alive", "Content-Length": "1171", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:32 GMT", + "Date": "Thu, 30 Oct 2025 21:59:14 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "72", + "openai-processing-ms": "78", "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": "77", + "x-envoy-upstream-service-time": "87", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_BRCze2IkIcKTFm2HLy2V3bfv", + "id": "msg_UHKAivduNF2jq3xMFg20hL4q", "object": "thread.message", - "created_at": 1758061650, - "assistant_id": "asst_zJE0t3c0L56E5ieEwJItn8eL", - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", - "run_id": "run_2sQrIXWVsa9ZFvm4mj0N1rWu", + "created_at": 1761861552, + "assistant_id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", + "run_id": "run_qESlsiZnlYfeC0h6lJTOMVcy", "role": "assistant", "content": [ { @@ -634,11 +645,11 @@ "metadata": {} }, { - "id": "msg_tWPrgEZNKFhBLuBpdIGawjdD", + "id": "msg_v7weAUDitV13UlegLU3QwV0w", "object": "thread.message", - "created_at": 1758061647, + "created_at": 1761861548, "assistant_id": null, - "thread_id": "thread_4RT7nzLagSqTvWaF3qTAVj1g", + "thread_id": "thread_VVo2xsJmQsaNxuYdqPloUXQm", "run_id": null, "role": "user", "content": [ @@ -654,8 +665,8 @@ "metadata": {} } ], - "first_id": "msg_BRCze2IkIcKTFm2HLy2V3bfv", - "last_id": "msg_tWPrgEZNKFhBLuBpdIGawjdD", + "first_id": "msg_UHKAivduNF2jq3xMFg20hL4q", + "last_id": "msg_v7weAUDitV13UlegLU3QwV0w", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/BasicRunOperationsWorkAsync.json b/tests/SessionRecords/AssistantsTests/BasicRunOperationsWorkAsync.json index 79c6c860c..922aef737 100644 --- a/tests/SessionRecords/AssistantsTests/BasicRunOperationsWorkAsync.json +++ b/tests/SessionRecords/AssistantsTests/BasicRunOperationsWorkAsync.json @@ -6,40 +6,41 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "23", + "Content-Length": "18", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini" + "model": "gpt-4o" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d1c84f04a334-SEA", + "CF-RAY": "996e3441cfa408e3-SEA", "Connection": "keep-alive", - "Content-Length": "337", + "Content-Length": "332", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:24 GMT", + "Date": "Thu, 30 Oct 2025 22:03:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1412", + "openai-processing-ms": "319", "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": "1475", + "x-envoy-upstream-service-time": "323", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", + "id": "asst_3OJz0DXezz4WCqyUXBDVfLky", "object": "assistant", - "created_at": 1758061943, + "created_at": 1761861822, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -58,63 +59,65 @@ "Authorization": "Sanitized", "Content-Length": "0", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1d23feea334-SEA", + "CF-RAY": "996e34446a3f08e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:24 GMT", + "Date": "Thu, 30 Oct 2025 22:03:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "150", + "openai-processing-ms": "152", "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": "158", + "x-envoy-upstream-service-time": "157", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_doe18yHKxwTxcTN7HbejQJEq", + "id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", "object": "thread", - "created_at": 1758061944, + "created_at": 1761861822, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_doe18yHKxwTxcTN7HbejQJEq/runs", + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/runs", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1d3d979a334-SEA", + "CF-RAY": "996e3445ebe508e3-SEA", "Connection": "keep-alive", "Content-Length": "96", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:25 GMT", + "Date": "Thu, 30 Oct 2025 22:03:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "51", + "openai-processing-ms": "23", "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": "56", + "x-envoy-upstream-service-time": "27", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { @@ -126,7 +129,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_doe18yHKxwTxcTN7HbejQJEq/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -134,7 +137,7 @@ "Content-Length": "45", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -144,27 +147,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d1d4ba32a334-SEA", + "CF-RAY": "996e34469c8908e3-SEA", "Connection": "keep-alive", "Content-Length": "391", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:25 GMT", + "Date": "Thu, 30 Oct 2025 22:03:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "238", + "openai-processing-ms": "272", "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": "247", + "x-envoy-upstream-service-time": "276", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_zEi8DnJbnL4ufVlBX2pxnRev", + "id": "msg_tDFe4HaQ3dRRoFaoetUMAQpt", "object": "thread.message", - "created_at": 1758061945, + "created_at": 1761861822, "assistant_id": null, - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", "run_id": null, "role": "user", "content": [ @@ -181,7 +185,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_doe18yHKxwTxcTN7HbejQJEq/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -189,46 +193,47 @@ "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", + "assistant_id": "asst_3OJz0DXezz4WCqyUXBDVfLky", "additional_messages": [] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d1d6cbd3a334-SEA", + "CF-RAY": "996e3448decb08e3-SEA", "Connection": "keep-alive", - "Content-Length": "832", + "Content-Length": "827", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:26 GMT", + "Date": "Thu, 30 Oct 2025 22:03:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "788", + "openai-processing-ms": "865", "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": "790", + "x-envoy-upstream-service-time": "870", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_5C9nhHuCpKCfMUOtvzjXWbAi", + "id": "run_6aoVDZ7Q3E3gsHKyjIR2ydXX", "object": "thread.run", - "created_at": 1758061945, - "assistant_id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", + "created_at": 1761861823, + "assistant_id": "asst_3OJz0DXezz4WCqyUXBDVfLky", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", "status": "queued", "started_at": null, - "expires_at": 1758062545, + "expires_at": 1761862423, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -250,49 +255,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_doe18yHKxwTxcTN7HbejQJEq/runs/run_5C9nhHuCpKCfMUOtvzjXWbAi", + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/runs/run_6aoVDZ7Q3E3gsHKyjIR2ydXX", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1dc6891a334-SEA", + "CF-RAY": "996e344ecd1008e3-SEA", "Connection": "keep-alive", - "Content-Length": "832", + "Content-Length": "827", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:26 GMT", + "Date": "Thu, 30 Oct 2025 22:03:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "479", + "openai-processing-ms": "204", "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": "498", + "x-envoy-upstream-service-time": "210", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_5C9nhHuCpKCfMUOtvzjXWbAi", + "id": "run_6aoVDZ7Q3E3gsHKyjIR2ydXX", "object": "thread.run", - "created_at": 1758061945, - "assistant_id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", + "created_at": 1761861823, + "assistant_id": "asst_3OJz0DXezz4WCqyUXBDVfLky", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", "status": "queued", "started_at": null, - "expires_at": 1758062545, + "expires_at": 1761862423, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -314,52 +320,53 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_doe18yHKxwTxcTN7HbejQJEq/runs", + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/runs", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1e01ba2a334-SEA", + "CF-RAY": "996e3450beea08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1131", + "Content-Length": "1115", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:27 GMT", + "Date": "Thu, 30 Oct 2025 22:03:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "463", + "openai-processing-ms": "314", "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": "494", + "x-envoy-upstream-service-time": "326", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "run_5C9nhHuCpKCfMUOtvzjXWbAi", + "id": "run_6aoVDZ7Q3E3gsHKyjIR2ydXX", "object": "thread.run", - "created_at": 1758061945, - "assistant_id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", - "status": "in_progress", - "started_at": 1758061946, - "expires_at": 1758062545, + "created_at": 1761861823, + "assistant_id": "asst_3OJz0DXezz4WCqyUXBDVfLky", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", + "status": "queued", + "started_at": null, + "expires_at": 1761862423, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -380,69 +387,50 @@ "parallel_tool_calls": true } ], - "first_id": "run_5C9nhHuCpKCfMUOtvzjXWbAi", - "last_id": "run_5C9nhHuCpKCfMUOtvzjXWbAi", + "first_id": "run_6aoVDZ7Q3E3gsHKyjIR2ydXX", + "last_id": "run_6aoVDZ7Q3E3gsHKyjIR2ydXX", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_doe18yHKxwTxcTN7HbejQJEq/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1e3be78a334-SEA", + "CF-RAY": "996e3453395d08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1171", + "Content-Length": "623", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:27 GMT", + "Date": "Thu, 30 Oct 2025 22:03:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "70", + "openai-processing-ms": "36", "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": "73", + "x-envoy-upstream-service-time": "40", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_qv5ihUkd9bSzCJNHENuxLof5", + "id": "msg_tDFe4HaQ3dRRoFaoetUMAQpt", "object": "thread.message", - "created_at": 1758061947, - "assistant_id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", - "run_id": "run_5C9nhHuCpKCfMUOtvzjXWbAi", - "role": "assistant", - "content": [ - { - "type": "text", - "text": { - "value": "Hello! How can I assist you today?", - "annotations": [] - } - } - ], - "attachments": [], - "metadata": {} - }, - { - "id": "msg_zEi8DnJbnL4ufVlBX2pxnRev", - "object": "thread.message", - "created_at": 1758061945, + "created_at": 1761861822, "assistant_id": null, - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", "run_id": null, "role": "user", "content": [ @@ -458,55 +446,121 @@ "metadata": {} } ], - "first_id": "msg_qv5ihUkd9bSzCJNHENuxLof5", - "last_id": "msg_zEi8DnJbnL4ufVlBX2pxnRev", + "first_id": "msg_tDFe4HaQ3dRRoFaoetUMAQpt", + "last_id": "msg_tDFe4HaQ3dRRoFaoetUMAQpt", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_doe18yHKxwTxcTN7HbejQJEq/runs/run_5C9nhHuCpKCfMUOtvzjXWbAi", + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/runs/run_6aoVDZ7Q3E3gsHKyjIR2ydXX", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e345a487208e3-SEA", + "Connection": "keep-alive", + "Content-Length": "838", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:03:45 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "235", + "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": "240", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_6aoVDZ7Q3E3gsHKyjIR2ydXX", + "object": "thread.run", + "created_at": 1761861823, + "assistant_id": "asst_3OJz0DXezz4WCqyUXBDVfLky", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", + "status": "in_progress", + "started_at": 1761861824, + "expires_at": 1761862423, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": null, + "tools": [], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/runs/run_6aoVDZ7Q3E3gsHKyjIR2ydXX", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1eb1c62a334-SEA", + "CF-RAY": "996e3462993908e3-SEA", "Connection": "keep-alive", - "Content-Length": "1051", + "Content-Length": "1046", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:28 GMT", + "Date": "Thu, 30 Oct 2025 22:03:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "159", + "openai-processing-ms": "354", "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": "163", + "x-envoy-upstream-service-time": "357", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_5C9nhHuCpKCfMUOtvzjXWbAi", + "id": "run_6aoVDZ7Q3E3gsHKyjIR2ydXX", "object": "thread.run", - "created_at": 1758061945, - "assistant_id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", + "created_at": 1761861823, + "assistant_id": "asst_3OJz0DXezz4WCqyUXBDVfLky", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", "status": "completed", - "started_at": 1758061946, + "started_at": 1761861824, "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": 1758061947, + "completed_at": 1761861825, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, @@ -538,44 +592,45 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_doe18yHKxwTxcTN7HbejQJEq/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_57O8yG1Ly6QlkLWsokhb8Ot1/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d1ec9da5a334-SEA", + "CF-RAY": "996e34657c5208e3-SEA", "Connection": "keep-alive", "Content-Length": "1171", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:29 GMT", + "Date": "Thu, 30 Oct 2025 22:03:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "48", + "openai-processing-ms": "68", "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": "53", + "x-envoy-upstream-service-time": "76", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_qv5ihUkd9bSzCJNHENuxLof5", + "id": "msg_gvoLfmRQiEDZzyQDTXZHqIvB", "object": "thread.message", - "created_at": 1758061947, - "assistant_id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", - "run_id": "run_5C9nhHuCpKCfMUOtvzjXWbAi", + "created_at": 1761861825, + "assistant_id": "asst_3OJz0DXezz4WCqyUXBDVfLky", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", + "run_id": "run_6aoVDZ7Q3E3gsHKyjIR2ydXX", "role": "assistant", "content": [ { @@ -590,11 +645,11 @@ "metadata": {} }, { - "id": "msg_zEi8DnJbnL4ufVlBX2pxnRev", + "id": "msg_tDFe4HaQ3dRRoFaoetUMAQpt", "object": "thread.message", - "created_at": 1758061945, + "created_at": 1761861822, "assistant_id": null, - "thread_id": "thread_doe18yHKxwTxcTN7HbejQJEq", + "thread_id": "thread_57O8yG1Ly6QlkLWsokhb8Ot1", "run_id": null, "role": "user", "content": [ @@ -610,8 +665,8 @@ "metadata": {} } ], - "first_id": "msg_qv5ihUkd9bSzCJNHENuxLof5", - "last_id": "msg_zEi8DnJbnL4ufVlBX2pxnRev", + "first_id": "msg_gvoLfmRQiEDZzyQDTXZHqIvB", + "last_id": "msg_tDFe4HaQ3dRRoFaoetUMAQpt", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/BasicRunStepFunctionalityWorks.json b/tests/SessionRecords/AssistantsTests/BasicRunStepFunctionalityWorks.json index 063b712dd..fafa7daa6 100644 --- a/tests/SessionRecords/AssistantsTests/BasicRunStepFunctionalityWorks.json +++ b/tests/SessionRecords/AssistantsTests/BasicRunStepFunctionalityWorks.json @@ -6,13 +6,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "147", + "Content-Length": "142", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -24,32 +24,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e15fdc1aa354-SEA", + "CF-RAY": "996e2dbd8be708e3-SEA", "Connection": "keep-alive", - "Content-Length": "507", + "Content-Length": "502", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:02 GMT", + "Date": "Thu, 30 Oct 2025 21:59:15 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "298", + "openai-processing-ms": "378", "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": "308", + "x-envoy-upstream-service-time": "387", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_Tccq90sK4vbdWzifckRwtyMM", + "id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", "object": "assistant", - "created_at": 1758062581, + "created_at": 1761861555, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -75,8 +72,8 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "440", - "Content-Type": "multipart/form-data; boundary=\"qRW0K9w3M6wCtD2tfAP3kd7UBLOL4biJ_JbSi1n3mpMPOAxtK7IZWA4GNRqJ2oH=000LND\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"QcZ9_EHSUVuHSGKyl7T0y2ZxodB0vMnNWtTn_83xpCBuZ0N0xNKvfMKri7fFOJuRyxOmjT\"", + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, @@ -84,29 +81,29 @@ "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e162dedfa354-SEA", + "CF-RAY": "996e2dc0ffab08e3-SEA", "Connection": "keep-alive", "Content-Length": "231", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:02 GMT", + "Date": "Thu, 30 Oct 2025 21:59:16 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "349", + "openai-processing-ms": "681", "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": "363", + "x-envoy-upstream-service-time": "690", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-3r2R5sDEw8JAgjBbPdid71", + "id": "file-FfZ1PFuD5rC4VKXMTRhyRX", "purpose": "assistants", "filename": "text/csv", "bytes": 18, - "created_at": 1758062582, + "created_at": 1761861555, "expires_at": null, "status": "processed", "status_details": null @@ -121,7 +118,7 @@ "Content-Length": "293", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -133,7 +130,7 @@ "tool_resources": { "code_interpreter": { "file_ids": [ - "file-3r2R5sDEw8JAgjBbPdid71" + "file-FfZ1PFuD5rC4VKXMTRhyRX" ] } } @@ -142,37 +139,38 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e165c978a354-SEA", + "CF-RAY": "996e2dc5ccae08e3-SEA", "Connection": "keep-alive", "Content-Length": "238", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:04 GMT", + "Date": "Thu, 30 Oct 2025 21:59:18 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1499", + "openai-processing-ms": "2485", "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": "1502", + "x-envoy-upstream-service-time": "2491", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "object": "thread", - "created_at": 1758062582, + "created_at": 1761861556, "metadata": {}, "tool_resources": { "code_interpreter": { "file_ids": [ - "file-3r2R5sDEw8JAgjBbPdid71" + "file-FfZ1PFuD5rC4VKXMTRhyRX" ] } } } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -180,46 +178,47 @@ "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", "additional_messages": [] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e16fcb6ba354-SEA", + "CF-RAY": "996e2dd60c9f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "946", + "Content-Length": "941", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:07 GMT", + "Date": "Thu, 30 Oct 2025 21:59:22 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "2989", + "openai-processing-ms": "3512", "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": "2999", + "x-envoy-upstream-service-time": "3607", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "queued", "started_at": null, - "expires_at": 1758063184, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -245,49 +244,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1897d66a354-SEA", + "CF-RAY": "996e2df3ca3708e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:08 GMT", + "Date": "Thu, 30 Oct 2025 21:59:23 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "341", + "openai-processing-ms": "188", "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": "353", + "x-envoy-upstream-service-time": "191", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -313,49 +313,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1929dfea354-SEA", + "CF-RAY": "996e2dfbda8d08e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:10 GMT", + "Date": "Thu, 30 Oct 2025 21:59:25 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "215", + "openai-processing-ms": "183", "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": "225", + "x-envoy-upstream-service-time": "195", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -381,49 +382,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e19b0dcba354-SEA", + "CF-RAY": "996e2e03ea3408e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:11 GMT", + "Date": "Thu, 30 Oct 2025 21:59:26 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "282", + "openai-processing-ms": "227", "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": "299", + "x-envoy-upstream-service-time": "240", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -449,49 +451,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1a3cdd5a354-SEA", + "CF-RAY": "996e2e0c4acf08e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:12 GMT", + "Date": "Thu, 30 Oct 2025 21:59:27 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "200", + "openai-processing-ms": "213", "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": "205", + "x-envoy-upstream-service-time": "218", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -517,49 +520,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1abfd96a354-SEA", + "CF-RAY": "996e2e148c4d08e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:14 GMT", + "Date": "Thu, 30 Oct 2025 21:59:29 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "217", + "openai-processing-ms": "164", "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": "252", + "x-envoy-upstream-service-time": "169", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -585,49 +589,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1b47c46a354-SEA", + "CF-RAY": "996e2e1c9c1b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:15 GMT", + "Date": "Thu, 30 Oct 2025 21:59:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "186", + "openai-processing-ms": "1494", "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": "189", + "x-envoy-upstream-service-time": "1635", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -653,49 +658,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1bc79f0a354-SEA", + "CF-RAY": "996e2e2dac7608e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:16 GMT", + "Date": "Thu, 30 Oct 2025 21:59:33 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "197", + "openai-processing-ms": "204", "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": "200", + "x-envoy-upstream-service-time": "210", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -721,49 +727,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1c48809a354-SEA", + "CF-RAY": "996e2e35ec2308e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:18 GMT", + "Date": "Thu, 30 Oct 2025 21:59:34 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "204", + "openai-processing-ms": "246", "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": "211", + "x-envoy-upstream-service-time": "259", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -789,49 +796,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1ccce70a354-SEA", + "CF-RAY": "996e2e3e7d0608e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:21 GMT", + "Date": "Thu, 30 Oct 2025 21:59:35 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1948", + "openai-processing-ms": "220", "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": "2103", + "x-envoy-upstream-service-time": "233", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -857,49 +865,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1e0ee40a354-SEA", + "CF-RAY": "996e2e46dd1508e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:23 GMT", + "Date": "Thu, 30 Oct 2025 21:59:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "259", + "openai-processing-ms": "206", "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": "269", + "x-envoy-upstream-service-time": "214", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -925,49 +934,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1efdac4a354-SEA", + "CF-RAY": "996e2e4f1d5108e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:25 GMT", + "Date": "Thu, 30 Oct 2025 21:59:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "153", + "openai-processing-ms": "296", "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": "161", + "x-envoy-upstream-service-time": "305", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -993,49 +1003,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1f7b876a354-SEA", + "CF-RAY": "996e2e57cdb908e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:26 GMT", + "Date": "Thu, 30 Oct 2025 21:59:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "168", + "openai-processing-ms": "512", "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": "171", + "x-envoy-upstream-service-time": "529", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1061,49 +1072,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e1ff9eb3a354-SEA", + "CF-RAY": "996e2e61ffe208e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:28 GMT", + "Date": "Thu, 30 Oct 2025 21:59:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1483", + "openai-processing-ms": "147", "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": "1591", + "x-envoy-upstream-service-time": "150", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1129,49 +1141,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2108bc0a354-SEA", + "CF-RAY": "996e2e69afa208e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:30 GMT", + "Date": "Thu, 30 Oct 2025 21:59:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "164", + "openai-processing-ms": "807", "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": "168", + "x-envoy-upstream-service-time": "847", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1197,49 +1210,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2186a74a354-SEA", + "CF-RAY": "996e2e75db8608e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:31 GMT", + "Date": "Thu, 30 Oct 2025 21:59:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "288", + "openai-processing-ms": "439", "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": "302", + "x-envoy-upstream-service-time": "475", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1265,49 +1279,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2211910a354-SEA", + "CF-RAY": "996e2e7facf908e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:32 GMT", + "Date": "Thu, 30 Oct 2025 21:59:46 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "153", + "openai-processing-ms": "170", "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": "157", + "x-envoy-upstream-service-time": "174", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1333,49 +1348,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2290f91a354-SEA", + "CF-RAY": "996e2e87ddc008e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:34 GMT", + "Date": "Thu, 30 Oct 2025 21:59:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "162", + "openai-processing-ms": "369", "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": "170", + "x-envoy-upstream-service-time": "383", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1401,49 +1417,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e230edd6a354-SEA", + "CF-RAY": "996e2e912f4508e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:35 GMT", + "Date": "Thu, 30 Oct 2025 21:59:48 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "238", + "openai-processing-ms": "186", "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": "250", + "x-envoy-upstream-service-time": "196", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1469,49 +1486,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2395c6aa354-SEA", + "CF-RAY": "996e2e993fea08e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:36 GMT", + "Date": "Thu, 30 Oct 2025 21:59:50 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "238", + "openai-processing-ms": "285", "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": "244", + "x-envoy-upstream-service-time": "290", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1537,49 +1555,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e241badba354-SEA", + "CF-RAY": "996e2ea1d8da08e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:38 GMT", + "Date": "Thu, 30 Oct 2025 21:59:51 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "225", + "openai-processing-ms": "205", "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": "233", + "x-envoy-upstream-service-time": "209", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1605,49 +1624,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e24a28d8a354-SEA", + "CF-RAY": "996e2ea9fa7b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:39 GMT", + "Date": "Thu, 30 Oct 2025 21:59:52 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "332", + "openai-processing-ms": "171", "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": "520", + "x-envoy-upstream-service-time": "174", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1673,49 +1693,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e254484aa354-SEA", + "CF-RAY": "996e2eb1fa2308e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:41 GMT", + "Date": "Thu, 30 Oct 2025 21:59:54 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "366", + "openai-processing-ms": "338", "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": "385", + "x-envoy-upstream-service-time": "349", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1741,49 +1762,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e25d7f80a354-SEA", + "CF-RAY": "996e2ebaebe708e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:42 GMT", + "Date": "Thu, 30 Oct 2025 21:59:55 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "181", + "openai-processing-ms": "157", "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": "186", + "x-envoy-upstream-service-time": "160", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1809,49 +1831,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2658d89a354-SEA", + "CF-RAY": "996e2ec2bc0308e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:43 GMT", + "Date": "Thu, 30 Oct 2025 21:59:56 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "143", + "openai-processing-ms": "174", "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": "146", + "x-envoy-upstream-service-time": "184", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1877,49 +1900,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e26d3b61a354-SEA", + "CF-RAY": "996e2ecaac1608e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:45 GMT", + "Date": "Thu, 30 Oct 2025 21:59:58 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "246", + "openai-processing-ms": "257", "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": "251", + "x-envoy-upstream-service-time": "267", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1945,49 +1969,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e275a9cba354-SEA", + "CF-RAY": "996e2ed36ca208e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:46 GMT", + "Date": "Thu, 30 Oct 2025 21:59:59 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "289", + "openai-processing-ms": "271", "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": "302", + "x-envoy-upstream-service-time": "278", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2013,49 +2038,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e27e785aa354-SEA", + "CF-RAY": "996e2edbec9d08e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:47 GMT", + "Date": "Thu, 30 Oct 2025 22:00:00 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "183", + "openai-processing-ms": "236", "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": "185", + "x-envoy-upstream-service-time": "240", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2081,49 +2107,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2867e6da354-SEA", + "CF-RAY": "996e2ee44ec008e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:49 GMT", + "Date": "Thu, 30 Oct 2025 22:00:02 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "164", + "openai-processing-ms": "249", "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": "167", + "x-envoy-upstream-service-time": "254", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2149,49 +2176,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e28e3c3ba354-SEA", + "CF-RAY": "996e2eecc91808e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:51 GMT", + "Date": "Thu, 30 Oct 2025 22:00:03 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "723", + "openai-processing-ms": "213", "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": "825", + "x-envoy-upstream-service-time": "220", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2217,49 +2245,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e29a3d4aa354-SEA", + "CF-RAY": "996e2ef50bc408e3-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:52 GMT", + "Date": "Thu, 30 Oct 2025 22:00:04 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "187", + "openai-processing-ms": "150", "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": "191", + "x-envoy-upstream-service-time": "154", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "status": "in_progress", - "started_at": 1758062588, - "expires_at": 1758063184, + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2285,49 +2314,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2a24c05a354-SEA", + "CF-RAY": "996e2efcfc2f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1173", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:55 GMT", + "Date": "Thu, 30 Oct 2025 22:00:06 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "2046", + "openai-processing-ms": "190", "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": "2090", + "x-envoy-upstream-service-time": "194", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_kVqUkmAEbMh3RFVEmal4VkoE", + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", "object": "thread.run", - "created_at": 1758062584, - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", - "status": "completed", - "started_at": 1758062588, - "expires_at": null, + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, "cancelled_at": null, "failed_at": null, - "completed_at": 1758062632, + "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2346,124 +2376,959 @@ "last_messages": null }, "incomplete_details": null, - "usage": { - "prompt_tokens": 40495, - "completion_tokens": 1112, - "total_tokens": 41607, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f051de108e3-SEA", + "Connection": "keep-alive", + "Content-Length": "952", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:07 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "244", + "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": "252", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null }, + "incomplete_details": null, + "usage": null, "response_format": "auto", "tool_choice": "auto", "parallel_tool_calls": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gscwDywWT1QtNP3zYLXpfmq2/runs/run_kVqUkmAEbMh3RFVEmal4VkoE/steps?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e2afffb0a354-SEA", + "CF-RAY": "996e2f0d98da08e3-SEA", "Connection": "keep-alive", - "Content-Length": "8583", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:55 GMT", + "Date": "Thu, 30 Oct 2025 22:00:08 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "166", + "openai-processing-ms": "265", "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": "170", + "x-envoy-upstream-service-time": "270", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "object": "list", - "data": [ + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ { - "id": "step_nhARViSrz0pfEbfi8OljGYQZ", - "object": "thread.run.step", - "created_at": 1758062625, - "run_id": "run_kVqUkmAEbMh3RFVEmal4VkoE", - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062632, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_1dkGf1h6SiWE4dCFHb4aWSEU" - } - }, - "usage": { - "prompt_tokens": 37980, - "completion_tokens": 334, - "total_tokens": 38314, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, + "type": "code_interpreter" + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f163c2608e3-SEA", + "Connection": "keep-alive", + "Content-Length": "952", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:10 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "388", + "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": "394", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ { - "id": "step_jVDFlzlmHxoemCcCDAT1ICRA", - "object": "thread.run.step", - "created_at": 1758062608, - "run_id": "run_kVqUkmAEbMh3RFVEmal4VkoE", - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062625, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_X2bJSWxCzMvNc2HVnWPsM19z", - "type": "code_interpreter", - "code_interpreter": { - "input": "import pandas as pd\r\nimport numpy as np\r\nfrom sklearn.linear_model import LinearRegression\r\nimport matplotlib.pyplot as plt\r\n\r\n# Read the content as a text file to manually parse it\r\nwith open(file_path, 'r') as f:\r\n content = f.readlines()\r\n\r\n# Process the lines to create a DataFrame\r\ncleaned_data = []\r\nfor line in content[1:]: # Skip header\r\n line = line.strip() # Remove whitespace\r\n if line.count(',') == 1: # Check for correct number of commas\r\n cleaned_data.append([float(value) for value in line.split(',')])\r\n\r\n# Create a DataFrame from the cleaned data\r\ndf = pd.DataFrame(cleaned_data, columns=['x', 'y'])\r\ndf.dropna(inplace=True) # Drop any NA values if present\r\n\r\n# Perform Linear Regression\r\nX = df[['x']]\r\ny = df['y']\r\nmodel = LinearRegression()\r\nmodel.fit(X, y)\r\n\r\n# Coefficients\r\nslope = model.coef_[0]\r\nintercept = model.intercept_\r\n\r\n# Calculate the coefficient of determination (R^2)\r\nr_squared = model.score(X, y)\r\n\r\n# Now let's visualize the results\r\nplt.figure(figsize=(10, 6))\r\nplt.scatter(df['x'], df['y'], color='blue', label='Data Points')\r\nplt.plot(df['x'], model.predict(X), color='red', label='Regression Line')\r\nplt.title('Linear Regression')\r\nplt.xlabel('x')\r\nplt.ylabel('y')\r\nplt.legend()\r\nplt.grid()\r\n\r\n# Display plot\r\nplt.show()\r\n\r\nslope, intercept, r_squared, df", - "outputs": [ - { - "type": "image", - "image": { - "file_id": "file-Kk36BdymBFddBqG7uhVKgT" - } - } - ] + "type": "code_interpreter" + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f1f9ede08e3-SEA", + "Connection": "keep-alive", + "Content-Length": "952", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:12 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "468", + "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": "555", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f2a3af108e3-SEA", + "Connection": "keep-alive", + "Content-Length": "952", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:13 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "398", + "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": "432", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f33bd6c08e3-SEA", + "Connection": "keep-alive", + "Content-Length": "952", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:18 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "2988", + "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": "3289", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f4f7de908e3-SEA", + "Connection": "keep-alive", + "Content-Length": "952", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:19 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "217", + "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": "220", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f57ce8508e3-SEA", + "Connection": "keep-alive", + "Content-Length": "952", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:20 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "155", + "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": "160", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "in_progress", + "started_at": 1761861563, + "expires_at": 1761862160, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f5f9e6708e3-SEA", + "Connection": "keep-alive", + "Content-Length": "1168", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:22 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "310", + "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": "316", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "object": "thread.run", + "created_at": 1761861560, + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "status": "completed", + "started_at": 1761861563, + "expires_at": null, + "cancelled_at": null, + "failed_at": null, + "completed_at": 1761861621, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": { + "prompt_tokens": 24165, + "completion_tokens": 1099, + "total_tokens": 25264, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + }, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_OS44jZFnGgFsgkVM85h4FzVY/runs/run_aiOgmOSxtqwaLG3JZAhGsAgR/steps?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e2f6218f208e3-SEA", + "Connection": "keep-alive", + "Content-Length": "14662", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:00:22 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "298", + "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": "301", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "object": "list", + "data": [ + { + "id": "step_zvZ3KGI9zefRnbkR9amo18dT", + "object": "thread.run.step", + "created_at": 1761861610, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761861621, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_Xu4xJ0nh9SQZqLuEN7MSAAQx" + } + }, + "usage": { + "prompt_tokens": 4276, + "completion_tokens": 205, + "total_tokens": 4481, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_bJ2U7q0YMc5lC2zY3o99BKcm", + "object": "thread.run.step", + "created_at": 1761861596, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "type": "tool_calls", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761861610, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "tool_calls", + "tool_calls": [ + { + "id": "call_7AkAk6cv3v5YzeUrebYyQJWo", + "type": "code_interpreter", + "code_interpreter": { + "input": "import numpy as np\nimport matplotlib.pyplot as plt\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.metrics import r2_score\n\n# Preparing the data for linear regression\nX = data[['x']].values\ny = data['y'].values\n\n# Creating a linear regression model\nmodel = LinearRegression()\nmodel.fit(X, y)\n\n# Predicting the y values using the linear model\ny_pred = model.predict(X)\n\n# Calculating the coefficient of correlation (R)\nr_squared = r2_score(y, y_pred)\nr = np.sqrt(r_squared)\n\n# Plotting the data points and the linear regression line\nplt.scatter(data['x'], data['y'], color='blue', label='Data Points')\nplt.plot(data['x'], y_pred, color='red', label='Regression Line')\nplt.xlabel('x')\nplt.ylabel('y')\nplt.title('Linear Regression')\nplt.legend()\nplt.show()\n\n# Output the R value\nr", + "outputs": [ + { + "type": "image", + "image": { + "file_id": "file-TEzYYqVu4gtxS4hvLGYGeM" + } + } + ] + } + } + ] + }, + "usage": { + "prompt_tokens": 2956, + "completion_tokens": 200, + "total_tokens": 3156, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_bGkmIaKLLbBgAwlFNHQVJxqS", + "object": "thread.run.step", + "created_at": 1761861594, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761861596, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_inHpo94hpYtRm2eX4ZI0OHah" + } + }, + "usage": { + "prompt_tokens": 2849, + "completion_tokens": 105, + "total_tokens": 2954, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_SNRrcxG5XdjvBCFAdCXU7YxH", + "object": "thread.run.step", + "created_at": 1761861589, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "type": "tool_calls", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761861594, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "tool_calls", + "tool_calls": [ + { + "id": "call_8rJm42OHRPxPqAeqklOwngNS", + "type": "code_interpreter", + "code_interpreter": { + "input": "# Correct lines that have more than two commas by splitting and taking only the first two elements\r\ncorrected_lines_alternative = []\r\nfor line in lines:\r\n parts = line.strip().split(',')\r\n # Ensure only two elements per line\r\n if len(parts) > 2:\r\n parts = parts[:2] # Take only the first two elements\r\n corrected_lines_alternative.append(','.join(parts))\r\n\r\n# Convert corrected lines to a DataFrame\r\ncorrected_data_alternative = StringIO('\\n'.join(corrected_lines_alternative))\r\ndata = pd.read_csv(corrected_data_alternative)\r\n\r\n# Display the cleaned data\r\ndata", + "outputs": [] + } + } + ] + }, + "usage": { + "prompt_tokens": 2677, + "completion_tokens": 136, + "total_tokens": 2813, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_PuWASy2eGjn71RTPo39uCmpm", + "object": "thread.run.step", + "created_at": 1761861588, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761861589, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_j5pjpFb1YXWQJDIP8f3JHuTQ" + } + }, + "usage": { + "prompt_tokens": 2627, + "completion_tokens": 48, + "total_tokens": 2675, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_ig5LxNRzegjReKLH0JFsJuLI", + "object": "thread.run.step", + "created_at": 1761861584, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "type": "tool_calls", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761861588, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "tool_calls", + "tool_calls": [ + { + "id": "call_J6iHkWTTtH0Ux4nyqV6zedEa", + "type": "code_interpreter", + "code_interpreter": { + "input": "from io import StringIO\n\n# Correct the formatting by removing the extra comma in problematic lines\ncorrected_lines = [line if line.count(',') == 1 else line.replace(',,', ',') for line in lines]\ncorrected_data = StringIO(''.join(corrected_lines))\n\n# Read the corrected data into a DataFrame\ndata = pd.read_csv(corrected_data)\n\n# Display the cleaned data\ndata", + "outputs": [] + } + } + ] + }, + "usage": { + "prompt_tokens": 1577, + "completion_tokens": 91, + "total_tokens": 1668, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_jaPCTw1CaQHBRzNb9CuHEP1D", + "object": "thread.run.step", + "created_at": 1761861580, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761861584, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_vwTlgoHfYPA2oYzV9f1ba7pm" + } + }, + "usage": { + "prompt_tokens": 1533, + "completion_tokens": 42, + "total_tokens": 1575, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_6Mz73RZo6BQGKdyE5g4lsEMn", + "object": "thread.run.step", + "created_at": 1761861577, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", + "type": "tool_calls", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761861580, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "tool_calls", + "tool_calls": [ + { + "id": "call_mRPr4hjhKqIeGX5xIJHcZgdy", + "type": "code_interpreter", + "code_interpreter": { + "input": "# Attempt to read the file as a text file to inspect its contents.\nwith open(file_path, 'r') as file:\n lines = file.readlines()\n\n# Display the first few lines of the file to understand its structure\nlines[:10]", + "outputs": [] } } ] }, "usage": { - "prompt_tokens": 743, - "completion_tokens": 338, - "total_tokens": 1081, + "prompt_tokens": 1446, + "completion_tokens": 56, + "total_tokens": 1502, "prompt_token_details": { "cached_tokens": 0 }, @@ -2473,29 +3338,29 @@ } }, { - "id": "step_MNi34t7L2JlfL2mR8zHbkpc9", + "id": "step_DRXUgfCy3QVFpJ3JPz9QdAmT", "object": "thread.run.step", - "created_at": 1758062605, - "run_id": "run_kVqUkmAEbMh3RFVEmal4VkoE", - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861575, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062608, + "completed_at": 1761861577, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_BePsoLpFX4u9C008tdL0IT3t" + "message_id": "msg_SXPypIwh7JTsgtv31dlXNpWu" } }, "usage": { - "prompt_tokens": 592, - "completion_tokens": 149, - "total_tokens": 741, + "prompt_tokens": 1395, + "completion_tokens": 49, + "total_tokens": 1444, "prompt_token_details": { "cached_tokens": 0 }, @@ -2505,16 +3370,16 @@ } }, { - "id": "step_vNLMm50VFZCE8DIz2BL9xkz4", + "id": "step_R9dh4H98nfe5dIy8U9fdwvnS", "object": "thread.run.step", - "created_at": 1758062599, - "run_id": "run_kVqUkmAEbMh3RFVEmal4VkoE", - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861573, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062605, + "completed_at": 1761861575, "expires_at": null, "failed_at": null, "last_error": null, @@ -2522,19 +3387,19 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_ToxB43WEnLpqplzhvaocWsLB", + "id": "call_oEgwqxDFQBlJpHiWa31qIItD", "type": "code_interpreter", "code_interpreter": { - "input": "# Checking the file type and reading its binary content for further inspection\nfile_type = ''\nwith open(file_path, 'rb') as f:\n file_head = f.read(20) # Read the first 20 bytes\n\nfile_head", + "input": "# Trying to read the file using Excel file format.\ntry:\n data = pd.read_excel(file_path)\nexcept Exception as e:\n data = str(e)\n\ndata", "outputs": [] } } ] }, "usage": { - "prompt_tokens": 512, - "completion_tokens": 55, - "total_tokens": 567, + "prompt_tokens": 1332, + "completion_tokens": 40, + "total_tokens": 1372, "prompt_token_details": { "cached_tokens": 0 }, @@ -2544,29 +3409,29 @@ } }, { - "id": "step_ccZT0Xi3GQr4dYqpEVHuBhHn", + "id": "step_Gu61rALqTS4CdbLVH2pvD7FZ", "object": "thread.run.step", - "created_at": 1758062597, - "run_id": "run_kVqUkmAEbMh3RFVEmal4VkoE", - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861569, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062599, + "completed_at": 1761861573, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_IvJqyWYm8UFUFMdzk7bPGKAa" + "message_id": "msg_BsSueyhe1fHQQMev3p1Cs3hG" } }, "usage": { - "prompt_tokens": 439, - "completion_tokens": 71, - "total_tokens": 510, + "prompt_tokens": 1270, + "completion_tokens": 60, + "total_tokens": 1330, "prompt_token_details": { "cached_tokens": 0 }, @@ -2576,16 +3441,16 @@ } }, { - "id": "step_5fxB99YVQdPOhDQjQPme6uXn", + "id": "step_1CdniKsB8by85qKABGMJr48L", "object": "thread.run.step", - "created_at": 1758062588, - "run_id": "run_kVqUkmAEbMh3RFVEmal4VkoE", - "assistant_id": "asst_Tccq90sK4vbdWzifckRwtyMM", - "thread_id": "thread_gscwDywWT1QtNP3zYLXpfmq2", + "created_at": 1761861563, + "run_id": "run_aiOgmOSxtqwaLG3JZAhGsAgR", + "assistant_id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", + "thread_id": "thread_OS44jZFnGgFsgkVM85h4FzVY", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062597, + "completed_at": 1761861569, "expires_at": null, "failed_at": null, "last_error": null, @@ -2593,19 +3458,19 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_MdcMIPGqUZO6huQojq7hEDHM", + "id": "call_1nb6PDRp5TWFrWdl6JetxgzQ", "type": "code_interpreter", "code_interpreter": { - "input": "# Let's first check the contents of the uploaded file to understand what type of data it contains.\r\nfile_path = '/mnt/data/file-3r2R5sDEw8JAgjBbPdid71'\r\n\r\n# Checking the file type and reading its contents\r\nimport pandas as pd\r\n\r\n# Attempting to read the file\r\ntry:\r\n # Try reading as a CSV file first\r\n data = pd.read_csv(file_path)\r\nexcept Exception as e:\r\n # If it fails, we will try to read it as an Excel file\r\n try:\r\n data = pd.read_excel(file_path)\r\n except Exception as ex:\r\n data = None\r\n error_message = str(e) + \" | \" + str(ex)\r\n\r\ndata.head() if data is not None else error_message", + "input": "import pandas as pd\n\n# Let's read the uploaded file to check its contents.\nfile_path = '/mnt/data/file-FfZ1PFuD5rC4VKXMTRhyRX'\ndata = pd.read_csv(file_path)\n\n# Display the first few rows of the data\ndata.head()", "outputs": [] } } ] }, "usage": { - "prompt_tokens": 229, - "completion_tokens": 165, - "total_tokens": 394, + "prompt_tokens": 227, + "completion_tokens": 67, + "total_tokens": 294, "prompt_token_details": { "cached_tokens": 0 }, @@ -2615,8 +3480,8 @@ } } ], - "first_id": "step_nhARViSrz0pfEbfi8OljGYQZ", - "last_id": "step_5fxB99YVQdPOhDQjQPme6uXn", + "first_id": "step_zvZ3KGI9zefRnbkR9amo18dT", + "last_id": "step_1CdniKsB8by85qKABGMJr48L", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/BasicRunStepFunctionalityWorksAsync.json b/tests/SessionRecords/AssistantsTests/BasicRunStepFunctionalityWorksAsync.json index 84701a4fd..174ef83c5 100644 --- a/tests/SessionRecords/AssistantsTests/BasicRunStepFunctionalityWorksAsync.json +++ b/tests/SessionRecords/AssistantsTests/BasicRunStepFunctionalityWorksAsync.json @@ -6,13 +6,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "147", + "Content-Length": "142", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -24,28 +24,33 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e55bdaa2a354-SEA", + "CF-RAY": "996e3c3a996dc62f-SEA", "Connection": "keep-alive", - "Content-Length": "507", + "Content-Length": "502", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:45 GMT", + "Date": "Thu, 30 Oct 2025 22:09:08 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "232", + "openai-processing-ms": "206", "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": "235", + "x-envoy-upstream-service-time": "211", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_ZXwreZyuxhIBFiRnmH794Go0", + "id": "asst_db8Xzu0t0fS53gYlACwNtVkg", "object": "assistant", - "created_at": 1758062745, + "created_at": 1761862148, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -71,8 +76,8 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "440", - "Content-Type": "multipart/form-data; boundary=\"QEfbDmwEhR6KOrtcC_EdGgWjmPSs8imnpbmn9Cq94QQSFRXBJ_J7ZnAl3dtXPSfIS7nbk0\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"UzDjSxdS_JmaKkTaXLg_LkHrwurC6VgmFEZQkHDVaK4qImDkWwgC=4zSH9cLyvdTStSTiu\"", + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, @@ -80,29 +85,29 @@ "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e55dfccea354-SEA", + "CF-RAY": "996e3c3d0a76c62f-SEA", "Connection": "keep-alive", "Content-Length": "231", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:45 GMT", + "Date": "Thu, 30 Oct 2025 22:09:09 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "295", + "openai-processing-ms": "287", "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": "306", + "x-envoy-upstream-service-time": "315", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-2HsxYBokKewxYYkRPUeyUf", + "id": "file-QEH6uaNCpueer9HUP8p4q2", "purpose": "assistants", "filename": "text/csv", "bytes": 18, - "created_at": 1758062745, + "created_at": 1761862148, "expires_at": null, "status": "processed", "status_details": null @@ -117,7 +122,7 @@ "Content-Length": "293", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -129,7 +134,7 @@ "tool_resources": { "code_interpreter": { "file_ids": [ - "file-2HsxYBokKewxYYkRPUeyUf" + "file-QEH6uaNCpueer9HUP8p4q2" ] } } @@ -138,37 +143,38 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e5606f73a354-SEA", + "CF-RAY": "996e3c3fdc02c62f-SEA", "Connection": "keep-alive", "Content-Length": "238", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:46 GMT", + "Date": "Thu, 30 Oct 2025 22:09:11 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1142", + "openai-processing-ms": "1918", "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": "1145", + "x-envoy-upstream-service-time": "1921", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "object": "thread", - "created_at": 1758062745, + "created_at": 1761862149, "metadata": {}, "tool_resources": { "code_interpreter": { "file_ids": [ - "file-2HsxYBokKewxYYkRPUeyUf" + "file-QEH6uaNCpueer9HUP8p4q2" ] } } } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -176,250 +182,47 @@ "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", "additional_messages": [] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e5681f41a354-SEA", + "CF-RAY": "996e3c4d2de5c62f-SEA", "Connection": "keep-alive", - "Content-Length": "946", + "Content-Length": "941", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:48 GMT", + "Date": "Thu, 30 Oct 2025 22:09:12 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1074", + "openai-processing-ms": "992", "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": "1081", + "x-envoy-upstream-service-time": "999", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "queued", "started_at": null, - "expires_at": 1758063347, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e575dcf4a354-SEA", - "Connection": "keep-alive", - "Content-Length": "957", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:49 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "152", - "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": "155", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", - "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e57dbceaa354-SEA", - "Connection": "keep-alive", - "Content-Length": "957", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:51 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "803", - "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": "808", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", - "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e5898e63a354-SEA", - "Connection": "keep-alive", - "Content-Length": "957", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:57 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "4566", - "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": "5052", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", - "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -445,185 +248,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e5b08b40a354-SEA", + "CF-RAY": "996e3c5a5d6bc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:58 GMT", + "Date": "Thu, 30 Oct 2025 22:09:13 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "208", + "openai-processing-ms": "212", "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": "214", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", - "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e5b8da51a354-SEA", - "Connection": "keep-alive", - "Content-Length": "957", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:00 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "183", - "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": "189", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", - "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e5c129c8a354-SEA", - "Connection": "keep-alive", - "Content-Length": "957", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:01 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "159", - "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": "162", + "x-envoy-upstream-service-time": "217", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -649,49 +317,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e5c8f8f4a354-SEA", + "CF-RAY": "996e3c629b9ac62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:02 GMT", + "Date": "Thu, 30 Oct 2025 22:09:14 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "150", + "openai-processing-ms": "135", "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": "155", + "x-envoy-upstream-service-time": "140", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -717,49 +386,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e5d11822a354-SEA", + "CF-RAY": "996e3c6a5908c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:03 GMT", + "Date": "Thu, 30 Oct 2025 22:09:16 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "166", + "openai-processing-ms": "161", "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": "169", + "x-envoy-upstream-service-time": "165", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -785,49 +455,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e5d92e71a354-SEA", + "CF-RAY": "996e3c723cadc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:05 GMT", + "Date": "Thu, 30 Oct 2025 22:09:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "258", + "openai-processing-ms": "225", "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": "267", + "x-envoy-upstream-service-time": "238", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -853,49 +524,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e5e1ad80a354-SEA", + "CF-RAY": "996e3c7ab972c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:06 GMT", + "Date": "Thu, 30 Oct 2025 22:09:18 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "166", + "openai-processing-ms": "188", "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": "168", + "x-envoy-upstream-service-time": "192", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -921,49 +593,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e5e97ccca354-SEA", + "CF-RAY": "996e3c82cd2bc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:07 GMT", + "Date": "Thu, 30 Oct 2025 22:09:20 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "170", + "openai-processing-ms": "139", "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": "173", + "x-envoy-upstream-service-time": "142", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -989,49 +662,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e5f16b7da354-SEA", + "CF-RAY": "996e3c8a88c1c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:09 GMT", + "Date": "Thu, 30 Oct 2025 22:09:21 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "264", + "openai-processing-ms": "146", "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": "291", + "x-envoy-upstream-service-time": "151", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1057,49 +731,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e5fa0c45a354-SEA", + "CF-RAY": "996e3c925accc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:10 GMT", + "Date": "Thu, 30 Oct 2025 22:09:22 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "181", + "openai-processing-ms": "169", "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": "185", + "x-envoy-upstream-service-time": "172", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1125,49 +800,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6023bb7a354-SEA", + "CF-RAY": "996e3c9a5df1c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:11 GMT", + "Date": "Thu, 30 Oct 2025 22:09:23 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "159", + "openai-processing-ms": "167", "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": "162", + "x-envoy-upstream-service-time": "170", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1193,49 +869,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e609fab6a354-SEA", + "CF-RAY": "996e3ca23f33c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:13 GMT", + "Date": "Thu, 30 Oct 2025 22:09:25 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "151", + "openai-processing-ms": "189", "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": "159", + "x-envoy-upstream-service-time": "192", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1261,49 +938,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e611db43a354-SEA", + "CF-RAY": "996e3caa389fc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:14 GMT", + "Date": "Thu, 30 Oct 2025 22:09:26 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "261", + "openai-processing-ms": "193", "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": "268", + "x-envoy-upstream-service-time": "206", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1329,49 +1007,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e61abbd4a354-SEA", + "CF-RAY": "996e3cb259b8c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:15 GMT", + "Date": "Thu, 30 Oct 2025 22:09:28 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "154", + "openai-processing-ms": "474", "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": "157", + "x-envoy-upstream-service-time": "497", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1397,49 +1076,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e622eb5aa354-SEA", + "CF-RAY": "996e3cbc68fec62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:17 GMT", + "Date": "Thu, 30 Oct 2025 22:09:29 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "193", + "openai-processing-ms": "179", "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": "196", + "x-envoy-upstream-service-time": "184", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1465,49 +1145,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e62aea2fa354-SEA", + "CF-RAY": "996e3cc4594cc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:18 GMT", + "Date": "Thu, 30 Oct 2025 22:09:30 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "177", + "openai-processing-ms": "180", "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": "186", + "x-envoy-upstream-service-time": "187", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1533,49 +1214,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e632c903a354-SEA", + "CF-RAY": "996e3ccc5bddc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:19 GMT", + "Date": "Thu, 30 Oct 2025 22:09:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "158", + "openai-processing-ms": "231", "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": "161", + "x-envoy-upstream-service-time": "237", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1601,49 +1283,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e63acf4da354-SEA", + "CF-RAY": "996e3cd4be23c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:20 GMT", + "Date": "Thu, 30 Oct 2025 22:09:33 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "170", + "openai-processing-ms": "304", "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": "175", + "x-envoy-upstream-service-time": "307", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1669,49 +1352,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e642bdcca354-SEA", + "CF-RAY": "996e3cdd689ec62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:22 GMT", + "Date": "Thu, 30 Oct 2025 22:09:34 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "865", + "openai-processing-ms": "165", "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": "875", + "x-envoy-upstream-service-time": "172", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1737,49 +1421,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e64f09c8a354-SEA", + "CF-RAY": "996e3ce5489ec62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:24 GMT", + "Date": "Thu, 30 Oct 2025 22:09:35 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "170", + "openai-processing-ms": "197", "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": "175", + "x-envoy-upstream-service-time": "200", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1805,49 +1490,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e656f976a354-SEA", + "CF-RAY": "996e3ced5aaec62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:25 GMT", + "Date": "Thu, 30 Oct 2025 22:09:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "197", + "openai-processing-ms": "168", "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": "201", + "x-envoy-upstream-service-time": "177", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1873,49 +1559,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e65f089da354-SEA", + "CF-RAY": "996e3cf55ca5c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:26 GMT", + "Date": "Thu, 30 Oct 2025 22:09:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "303", + "openai-processing-ms": "203", "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": "335", + "x-envoy-upstream-service-time": "210", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -1941,49 +1628,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6684916a354-SEA", + "CF-RAY": "996e3cfd9efcc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:28 GMT", + "Date": "Thu, 30 Oct 2025 22:09:39 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "176", + "openai-processing-ms": "147", "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": "180", + "x-envoy-upstream-service-time": "152", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2009,49 +1697,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e670386fa354-SEA", + "CF-RAY": "996e3d056839c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:29 GMT", + "Date": "Thu, 30 Oct 2025 22:09:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "190", + "openai-processing-ms": "173", "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": "193", + "x-envoy-upstream-service-time": "178", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2077,49 +1766,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6785efba354-SEA", + "CF-RAY": "996e3d0d6907c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:30 GMT", + "Date": "Thu, 30 Oct 2025 22:09:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "288", + "openai-processing-ms": "192", "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": "303", + "x-envoy-upstream-service-time": "196", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2145,49 +1835,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6810f3ba354-SEA", + "CF-RAY": "996e3d159b6bc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:32 GMT", + "Date": "Thu, 30 Oct 2025 22:09:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "253", + "openai-processing-ms": "201", "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": "260", + "x-envoy-upstream-service-time": "206", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2213,49 +1904,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e689886fa354-SEA", + "CF-RAY": "996e3d1dcd4bc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:33 GMT", + "Date": "Thu, 30 Oct 2025 22:09:45 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "162", + "openai-processing-ms": "454", "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": "167", + "x-envoy-upstream-service-time": "457", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2281,49 +1973,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6916fcaa354-SEA", + "CF-RAY": "996e3d278cfbc62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:34 GMT", + "Date": "Thu, 30 Oct 2025 22:09:46 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "310", + "openai-processing-ms": "226", "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": "372", + "x-envoy-upstream-service-time": "243", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2349,49 +2042,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e69a883ba354-SEA", + "CF-RAY": "996e3d2fee61c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:36 GMT", + "Date": "Thu, 30 Oct 2025 22:09:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "171", + "openai-processing-ms": "192", "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": "174", + "x-envoy-upstream-service-time": "198", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2417,49 +2111,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6a26fd0a354-SEA", + "CF-RAY": "996e3d381f91c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:37 GMT", + "Date": "Thu, 30 Oct 2025 22:09:49 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "252", + "openai-processing-ms": "199", "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": "259", + "x-envoy-upstream-service-time": "204", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2485,49 +2180,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6aad82ca354-SEA", + "CF-RAY": "996e3d4038c4c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:38 GMT", + "Date": "Thu, 30 Oct 2025 22:09:50 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "168", + "openai-processing-ms": "223", "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": "172", + "x-envoy-upstream-service-time": "227", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2553,49 +2249,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6b30f9da354-SEA", + "CF-RAY": "996e3d488a41c62f-SEA", "Connection": "keep-alive", - "Content-Length": "957", + "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:40 GMT", + "Date": "Thu, 30 Oct 2025 22:09:51 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "292", + "openai-processing-ms": "190", "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": "313", + "x-envoy-upstream-service-time": "193", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "in_progress", - "started_at": 1758062748, - "expires_at": 1758063347, + "started_at": 1761862152, + "expires_at": 1761862751, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2621,49 +2318,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6bbe815a354-SEA", + "CF-RAY": "996e3d509aa0c62f-SEA", "Connection": "keep-alive", - "Content-Length": "1173", + "Content-Length": "1167", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:44 GMT", + "Date": "Thu, 30 Oct 2025 22:09:53 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "2424", + "openai-processing-ms": "312", "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": "2919", + "x-envoy-upstream-service-time": "333", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_9pUVIlu732dCSf4ZjA0F8xr1", + "id": "run_xFw0yYPb4TyJODAmZqB5gKve", "object": "thread.run", - "created_at": 1758062747, - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862151, + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "status": "completed", - "started_at": 1758062748, + "started_at": 1761862152, "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": 1758062802, + "completed_at": 1761862192, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -2683,9 +2381,9 @@ }, "incomplete_details": null, "usage": { - "prompt_tokens": 49263, - "completion_tokens": 1221, - "total_tokens": 50484, + "prompt_tokens": 12667, + "completion_tokens": 921, + "total_tokens": 13588, "prompt_token_details": { "cached_tokens": 0 }, @@ -2699,61 +2397,62 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_8F4Y7PurL54Dnrh0IUObNEGX/runs/run_9pUVIlu732dCSf4ZjA0F8xr1/steps?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_jGaEj2WQOOWOJ7CqnoUXTGOS/runs/run_xFw0yYPb4TyJODAmZqB5gKve/steps?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e6cedadda354-SEA", + "CF-RAY": "996e3d534b1ac62f-SEA", "Connection": "keep-alive", - "Content-Length": "10643", + "Content-Length": "11099", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:44 GMT", + "Date": "Thu, 30 Oct 2025 22:09:54 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "320", + "openai-processing-ms": "739", "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": "332", + "x-envoy-upstream-service-time": "747", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "step_1705SzOcNOayCqOvixMU1PRu", + "id": "step_mSufJEpnBdW8EUAAqSpF6407", "object": "thread.run.step", - "created_at": 1758062797, - "run_id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862186, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062802, + "completed_at": 1761862192, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_489x9nwiCgbfYQ09hvRKdr3l" + "message_id": "msg_Cuoi2vn5NyNGKUuBviyDubYO" } }, "usage": { - "prompt_tokens": 39081, - "completion_tokens": 319, - "total_tokens": 39400, + "prompt_tokens": 2808, + "completion_tokens": 161, + "total_tokens": 2969, "prompt_token_details": { "cached_tokens": 0 }, @@ -2763,16 +2462,16 @@ } }, { - "id": "step_fnC9UwPBblwBCxuiPVkhMu6Q", + "id": "step_pPImThlb9Shw53eDYYihVP78", "object": "thread.run.step", - "created_at": 1758062782, - "run_id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862178, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062797, + "completed_at": 1761862186, "expires_at": null, "failed_at": null, "last_error": null, @@ -2780,15 +2479,15 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_JPegT1NxSutLU0msIHzJKScD", + "id": "call_VQFUFN6jl5TksSd1KD03ENp9", "type": "code_interpreter", "code_interpreter": { - "input": "import numpy as np\r\nimport matplotlib.pyplot as plt\r\nfrom sklearn.linear_model import LinearRegression\r\nfrom sklearn.metrics import r2_score\r\n\r\n# Prepare the data for linear regression\r\nX = data_df[['x']].values # Independent variable\r\ny = data_df['y'].values # Dependent variable\r\n\r\n# Fit a linear regression model\r\nmodel = LinearRegression()\r\nmodel.fit(X, y)\r\n\r\n# Predictions\r\ny_pred = model.predict(X)\r\n\r\n# Coefficient of correlation (R^2 score)\r\nr2 = r2_score(y, y_pred)\r\n\r\n# Create a scatter plot and the regression line\r\nplt.figure(figsize=(10, 6))\r\nplt.scatter(X, y, color='blue', label='Data points')\r\nplt.plot(X, y_pred, color='red', label='Regression line')\r\nplt.title('Linear Regression')\r\nplt.xlabel('x')\r\nplt.ylabel('y')\r\nplt.legend()\r\nplt.grid()\r\nplt.show()\r\n\r\nr2", + "input": "import numpy as np\nimport matplotlib.pyplot as plt\nfrom scipy.stats import linregress\n\n# Extract x and y values\nx = cleaned_data['x']\ny = cleaned_data['y']\n\n# Perform linear regression\nslope, intercept, r_value, p_value, std_err = linregress(x, y)\n\n# Calculate regression line\nregression_line = slope * x + intercept\n\n# Plot data and regression line\nplt.figure(figsize=(8, 6))\nplt.scatter(x, y, color='blue', label='Data points')\nplt.plot(x, regression_line, color='red', label=f'Regression line: y = {slope:.2f}x + {intercept:.2f}')\nplt.xlabel('x')\nplt.ylabel('y')\nplt.title('Linear Regression')\nplt.legend()\nplt.grid(True)\nplt.show()\n\n# Correlation coefficient\ncorrelation_coefficient = r_value\n\ncorrelation_coefficient", "outputs": [ { "type": "image", "image": { - "file_id": "file-Q5qcmLRsZ9PZ6vsqFfmiaD" + "file_id": "file-76WoETEVSNsn3EDZtfhPPe" } } ] @@ -2797,9 +2496,9 @@ ] }, "usage": { - "prompt_tokens": 2039, + "prompt_tokens": 1836, "completion_tokens": 196, - "total_tokens": 2235, + "total_tokens": 2032, "prompt_token_details": { "cached_tokens": 0 }, @@ -2809,29 +2508,29 @@ } }, { - "id": "step_1DFmA8sUCOe7paovYqTNNn4u", + "id": "step_u5UNTEdozj2yFqEKspikITIr", "object": "thread.run.step", - "created_at": 1758062778, - "run_id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862175, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062782, + "completed_at": 1761862178, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_zAWZXvaoMwsQoA4EdAEFKQRd" + "message_id": "msg_HFwy6DsqKwi32CrFcggjV7ri" } }, "usage": { - "prompt_tokens": 1896, - "completion_tokens": 141, - "total_tokens": 2037, + "prompt_tokens": 1751, + "completion_tokens": 83, + "total_tokens": 1834, "prompt_token_details": { "cached_tokens": 0 }, @@ -2841,16 +2540,16 @@ } }, { - "id": "step_SX8GmCLe194jBOxeqUCij9Mg", + "id": "step_uS9kYL8ItPRBqp5NuMffHj5L", "object": "thread.run.step", - "created_at": 1758062771, - "run_id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862169, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062778, + "completed_at": 1761862175, "expires_at": null, "failed_at": null, "last_error": null, @@ -2858,19 +2557,19 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_SChYadENAqODbKLcrbYcwI7e", + "id": "call_vlptE5bqu65hFpaEA1z2nTsg", "type": "code_interpreter", "code_interpreter": { - "input": "# Cleaning the data by removing empty entries resulting from trailing commas and storing it in a proper format\r\ncleaned_lines = [line.strip() for line in file_contents if line.strip() and not line.strip().endswith(',')]\r\n\r\n# Recreate a clean CSV string and read it into a DataFrame\r\ncleaned_data = \"\\n\".join(cleaned_lines)\r\nfrom io import StringIO\r\n\r\n# Read the cleaned data into a DataFrame\r\ndata_df = pd.read_csv(StringIO(cleaned_data))\r\n\r\n# Display the cleaned DataFrame and its structure\r\ndata_df_info = {\r\n \"head\": data_df.head(),\r\n \"shape\": data_df.shape,\r\n \"columns\": data_df.columns.tolist()\r\n}\r\n\r\ndata_df_info", + "input": "import io\n\n# Correct the file content by removing lines with extra delimiters or format them correctly\ncleaned_lines = []\nfor line in raw_content:\n # Strip leading/trailing whitespace and split by commas\n values = line.strip().split(',')\n # Consider line only if it has exactly two non-empty parts\n if len(values) == 2 and all(values):\n cleaned_lines.append(line.strip())\n\n# Join the cleaned lines into a valid CSV format\ncleaned_data_str = \"\\n\".join(cleaned_lines)\n\n# Read the cleaned data into a DataFrame\ncleaned_data = pd.read_csv(io.StringIO(cleaned_data_str))\n\n# Display the cleaned data\ncleaned_data.head()", "outputs": [] } } ] }, "usage": { - "prompt_tokens": 1692, - "completion_tokens": 152, - "total_tokens": 1844, + "prompt_tokens": 1573, + "completion_tokens": 150, + "total_tokens": 1723, "prompt_token_details": { "cached_tokens": 0 }, @@ -2880,29 +2579,29 @@ } }, { - "id": "step_FQkDPkkcJ5JfRFiwODNxt7Sv", + "id": "step_H9cVfKAsz1AVM6jS37laEhJU", "object": "thread.run.step", - "created_at": 1758062766, - "run_id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862166, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062771, + "completed_at": 1761862169, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_dZ151SdTccpPL5v8iqImwZkB" + "message_id": "msg_zIureWQtYk5hkUfKNsBiuYBq" } }, "usage": { - "prompt_tokens": 1538, - "completion_tokens": 152, - "total_tokens": 1690, + "prompt_tokens": 1480, + "completion_tokens": 91, + "total_tokens": 1571, "prompt_token_details": { "cached_tokens": 0 }, @@ -2912,16 +2611,16 @@ } }, { - "id": "step_f1AxnEym5lKsh418CHyDRCOK", + "id": "step_TrSl1OvZ9cEn1IxH1fYFPPFE", "object": "thread.run.step", - "created_at": 1758062761, - "run_id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862164, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062766, + "completed_at": 1761862166, "expires_at": null, "failed_at": null, "last_error": null, @@ -2929,19 +2628,19 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_e4PKpTbRYqT2U7oJZ0p3QPiz", + "id": "call_pksoUrFaJGw7eEzfHBQUdGfO", "type": "code_interpreter", "code_interpreter": { - "input": "# Attempting to open the file and read its contents directly to understand the format.\r\nfile_contents = \"\"\r\n\r\nwith open(file_path, 'r') as file:\r\n file_contents = file.readlines()\r\n\r\n# Displaying the first few lines of the file to understand its structure\r\nfile_contents[:10] # Show the first 10 lines for inspection", + "input": "# Attempt to read the raw content to understand the structure of the file\nwith open(file_path, 'r') as file:\n raw_content = file.readlines()\n\n# Display the first few lines of the file to understand its structure\nraw_content[:5]", "outputs": [] } } ] }, "usage": { - "prompt_tokens": 1431, - "completion_tokens": 76, - "total_tokens": 1507, + "prompt_tokens": 1391, + "completion_tokens": 58, + "total_tokens": 1449, "prompt_token_details": { "cached_tokens": 0 }, @@ -2951,29 +2650,29 @@ } }, { - "id": "step_cnmpgNhEVHSLZ13jkkFjYJhA", + "id": "step_QilwhZdlskhGmJaE0XyUo4ej", "object": "thread.run.step", - "created_at": 1758062759, - "run_id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862161, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062761, + "completed_at": 1761862164, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_HoBmVE0I9O2wV1NU3ETzSYW2" + "message_id": "msg_orRvPEEYnhhVa9AZPFxyGjZL" } }, "usage": { - "prompt_tokens": 1359, - "completion_tokens": 70, - "total_tokens": 1429, + "prompt_tokens": 1324, + "completion_tokens": 65, + "total_tokens": 1389, "prompt_token_details": { "cached_tokens": 0 }, @@ -2983,16 +2682,16 @@ } }, { - "id": "step_038GwFei22zETLxuA4SGpp8p", + "id": "step_7qx5YY0RMcMs1Ww2AImZhKDN", "object": "thread.run.step", - "created_at": 1758062749, - "run_id": "run_9pUVIlu732dCSf4ZjA0F8xr1", - "assistant_id": "asst_ZXwreZyuxhIBFiRnmH794Go0", - "thread_id": "thread_8F4Y7PurL54Dnrh0IUObNEGX", + "created_at": 1761862156, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062759, + "completed_at": 1761862161, "expires_at": null, "failed_at": null, "last_error": null, @@ -3000,19 +2699,51 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_k51wdrPxs0WwOIlos44qYHIw", + "id": "call_4ZLebkKVTQbTWdJHkwLSlYFh", "type": "code_interpreter", "code_interpreter": { - "input": "# Let's first read the contents of the uploaded file to understand what data it contains.\r\nimport pandas as pd\r\n\r\n# Load the file to inspect its contents\r\nfile_path = '/mnt/data/file-2HsxYBokKewxYYkRPUeyUf'\r\ndata = pd.read_csv(file_path)\r\n\r\n# Display the first few rows of the dataframe along with its shape and column information\r\ndata_info = {\r\n \"head\": data.head(),\r\n \"shape\": data.shape,\r\n \"columns\": data.columns.tolist()\r\n}\r\n\r\ndata_info", + "input": "import pandas as pd\n\n# Load the contents of the uploaded file\nfile_path = '/mnt/data/file-QEH6uaNCpueer9HUP8p4q2'\ndata = pd.read_csv(file_path)\n\n# Display the first few rows of the dataframe to understand its structure\ndata.head()", "outputs": [] } } ] }, + "usage": { + "prompt_tokens": 277, + "completion_tokens": 69, + "total_tokens": 346, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_obOzC7ibRbY2mVj0G6YAo9Cl", + "object": "thread.run.step", + "created_at": 1761862154, + "run_id": "run_xFw0yYPb4TyJODAmZqB5gKve", + "assistant_id": "asst_db8Xzu0t0fS53gYlACwNtVkg", + "thread_id": "thread_jGaEj2WQOOWOJ7CqnoUXTGOS", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862156, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_OOaGgXRJjPXIFXQVMZQ1CjW7" + } + }, "usage": { "prompt_tokens": 227, - "completion_tokens": 115, - "total_tokens": 342, + "completion_tokens": 48, + "total_tokens": 275, "prompt_token_details": { "cached_tokens": 0 }, @@ -3022,8 +2753,8 @@ } } ], - "first_id": "step_1705SzOcNOayCqOvixMU1PRu", - "last_id": "step_038GwFei22zETLxuA4SGpp8p", + "first_id": "step_mSufJEpnBdW8EUAAqSpF6407", + "last_id": "step_obOzC7ibRbY2mVj0G6YAo9Cl", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/BasicThreadOperationsWork.json b/tests/SessionRecords/AssistantsTests/BasicThreadOperationsWork.json index 02e22efdc..274462a98 100644 --- a/tests/SessionRecords/AssistantsTests/BasicThreadOperationsWork.json +++ b/tests/SessionRecords/AssistantsTests/BasicThreadOperationsWork.json @@ -8,67 +8,69 @@ "Authorization": "Sanitized", "Content-Length": "0", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ccb00f44a334-SEA", + "CF-RAY": "996e2f65dd4308e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:28:54 GMT", + "Date": "Thu, 30 Oct 2025 22:00:23 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "123", + "openai-processing-ms": "239", "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": "129", + "x-envoy-upstream-service-time": "246", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_utqda9WhSSq9iANeNJ08nqny", + "id": "thread_Yd4EBztr1TGVYGrsBKmvdweb", "object": "thread", - "created_at": 1758061734, + "created_at": 1761861622, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_utqda9WhSSq9iANeNJ08nqny", + "RequestUri": "https://api.openai.com/v1/threads/thread_Yd4EBztr1TGVYGrsBKmvdweb", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ccb158efa334-SEA", + "CF-RAY": "996e2f67df7c08e3-SEA", "Connection": "keep-alive", "Content-Length": "94", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:28:54 GMT", + "Date": "Thu, 30 Oct 2025 22:00:26 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "262", + "openai-processing-ms": "3517", "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": "266", + "x-envoy-upstream-service-time": "3523", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_utqda9WhSSq9iANeNJ08nqny", + "id": "thread_Yd4EBztr1TGVYGrsBKmvdweb", "object": "thread.deleted", "deleted": true } @@ -82,7 +84,7 @@ "Content-Length": "67", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [], @@ -94,25 +96,26 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ccb3bb61a334-SEA", + "CF-RAY": "996e2f7e88da08e3-SEA", "Connection": "keep-alive", "Content-Length": "184", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:28:55 GMT", + "Date": "Thu, 30 Oct 2025 22:00:27 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "140", + "openai-processing-ms": "272", "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": "144", + "x-envoy-upstream-service-time": "289", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_HseGumKcVhtXgp6oOCovI7Ay", + "id": "thread_AHqXohYpLueVwYQ23H8ZIaGO", "object": "thread", - "created_at": 1758061735, + "created_at": 1761861626, "metadata": { "threadMetadata": "threadMetadataValue" }, @@ -120,38 +123,39 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_HseGumKcVhtXgp6oOCovI7Ay", + "RequestUri": "https://api.openai.com/v1/threads/thread_AHqXohYpLueVwYQ23H8ZIaGO", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ccb51c73a334-SEA", + "CF-RAY": "996e2f81ac6508e3-SEA", "Connection": "keep-alive", "Content-Length": "240", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:28:55 GMT", + "Date": "Thu, 30 Oct 2025 22:00:30 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "144", + "openai-processing-ms": "2813", "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": "148", + "x-envoy-upstream-service-time": "3185", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_HseGumKcVhtXgp6oOCovI7Ay", + "id": "thread_AHqXohYpLueVwYQ23H8ZIaGO", "object": "thread", - "created_at": 1758061735, + "created_at": 1761861626, "metadata": { "threadMetadata": "threadMetadataValue" }, @@ -163,7 +167,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_HseGumKcVhtXgp6oOCovI7Ay", + "RequestUri": "https://api.openai.com/v1/threads/thread_AHqXohYpLueVwYQ23H8ZIaGO", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -171,7 +175,7 @@ "Content-Length": "56", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "metadata": { @@ -182,25 +186,26 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ccb68db6a334-SEA", + "CF-RAY": "996e2f968a0908e3-SEA", "Connection": "keep-alive", "Content-Length": "187", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:28:55 GMT", + "Date": "Thu, 30 Oct 2025 22:00:30 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "429", + "openai-processing-ms": "291", "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": "451", + "x-envoy-upstream-service-time": "294", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_HseGumKcVhtXgp6oOCovI7Ay", + "id": "thread_AHqXohYpLueVwYQ23H8ZIaGO", "object": "thread", - "created_at": 1758061735, + "created_at": 1761861626, "metadata": { "threadMetadata": "newThreadMetadataValue" }, diff --git a/tests/SessionRecords/AssistantsTests/BasicThreadOperationsWorkAsync.json b/tests/SessionRecords/AssistantsTests/BasicThreadOperationsWorkAsync.json index b48b0d03b..3b9877507 100644 --- a/tests/SessionRecords/AssistantsTests/BasicThreadOperationsWorkAsync.json +++ b/tests/SessionRecords/AssistantsTests/BasicThreadOperationsWorkAsync.json @@ -8,67 +8,69 @@ "Authorization": "Sanitized", "Content-Length": "0", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d336e9a0a334-SEA", + "CF-RAY": "996e34f199e608e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:33:21 GMT", + "Date": "Thu, 30 Oct 2025 22:04:10 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "161", + "openai-processing-ms": "413", "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": "167", + "x-envoy-upstream-service-time": "431", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_kkuDvhwPSWgdJ1cBWSGVn3pW", + "id": "thread_8Sevrd3Q5uG5ADgf4ggKvHKG", "object": "thread", - "created_at": 1758062001, + "created_at": 1761861850, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_kkuDvhwPSWgdJ1cBWSGVn3pW", + "RequestUri": "https://api.openai.com/v1/threads/thread_8Sevrd3Q5uG5ADgf4ggKvHKG", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d3389afda334-SEA", + "CF-RAY": "996e34f4dd1508e3-SEA", "Connection": "keep-alive", "Content-Length": "94", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:33:22 GMT", + "Date": "Thu, 30 Oct 2025 22:04:10 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "303", + "openai-processing-ms": "366", "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": "308", + "x-envoy-upstream-service-time": "370", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_kkuDvhwPSWgdJ1cBWSGVn3pW", + "id": "thread_8Sevrd3Q5uG5ADgf4ggKvHKG", "object": "thread.deleted", "deleted": true } @@ -82,7 +84,7 @@ "Content-Length": "67", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [], @@ -94,25 +96,26 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d33b0d2fa334-SEA", + "CF-RAY": "996e34f7afe408e3-SEA", "Connection": "keep-alive", "Content-Length": "184", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:33:22 GMT", + "Date": "Thu, 30 Oct 2025 22:04:11 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "135", + "openai-processing-ms": "216", "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": "143", + "x-envoy-upstream-service-time": "241", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_UfMWSEJItFsOfdSexdM65HPH", + "id": "thread_yyYp9068JYDztdWmjUIYHFum", "object": "thread", - "created_at": 1758062002, + "created_at": 1761861850, "metadata": { "threadMetadata": "threadMetadataValue" }, @@ -120,38 +123,39 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_UfMWSEJItFsOfdSexdM65HPH", + "RequestUri": "https://api.openai.com/v1/threads/thread_yyYp9068JYDztdWmjUIYHFum", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d33cae9ba334-SEA", + "CF-RAY": "996e34f9c9ef08e3-SEA", "Connection": "keep-alive", "Content-Length": "240", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:33:23 GMT", + "Date": "Thu, 30 Oct 2025 22:04:11 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "430", + "openai-processing-ms": "240", "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": "480", + "x-envoy-upstream-service-time": "254", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_UfMWSEJItFsOfdSexdM65HPH", + "id": "thread_yyYp9068JYDztdWmjUIYHFum", "object": "thread", - "created_at": 1758062002, + "created_at": 1761861850, "metadata": { "threadMetadata": "threadMetadataValue" }, @@ -163,7 +167,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_UfMWSEJItFsOfdSexdM65HPH", + "RequestUri": "https://api.openai.com/v1/threads/thread_yyYp9068JYDztdWmjUIYHFum", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -171,7 +175,7 @@ "Content-Length": "56", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "metadata": { @@ -182,25 +186,26 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d340498aa334-SEA", + "CF-RAY": "996e34fbec0c08e3-SEA", "Connection": "keep-alive", "Content-Length": "187", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:33:23 GMT", + "Date": "Thu, 30 Oct 2025 22:04:12 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "552", + "openai-processing-ms": "887", "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": "556", + "x-envoy-upstream-service-time": "892", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_UfMWSEJItFsOfdSexdM65HPH", + "id": "thread_yyYp9068JYDztdWmjUIYHFum", "object": "thread", - "created_at": 1758062002, + "created_at": 1761861850, "metadata": { "threadMetadata": "newThreadMetadataValue" }, diff --git a/tests/SessionRecords/AssistantsTests/FileSearchStreamingWorks.json b/tests/SessionRecords/AssistantsTests/FileSearchStreamingWorks.json index 965e45fde..2368356a3 100644 --- a/tests/SessionRecords/AssistantsTests/FileSearchStreamingWorks.json +++ b/tests/SessionRecords/AssistantsTests/FileSearchStreamingWorks.json @@ -7,8 +7,8 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "549", - "Content-Type": "multipart/form-data; boundary=\"TBdSni0rha509r3tKI6V6fuQJ2kyaEoRjGhukXc6BsJ2m8Vb=O9bo0UVFa4jnu48_lSKpm\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"hmn5ojhddt_t3_tvJ9zfhmfoRQ9mKFgfoYT8tuSyTEHrbTLB73_5SoTZgybWTSJCn5U9uX\"", + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, @@ -16,29 +16,29 @@ "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e2b5ed14a354-SEA", + "CF-RAY": "996e2f991c2308e3-SEA", "Connection": "keep-alive", "Content-Length": "242", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:57 GMT", + "Date": "Thu, 30 Oct 2025 22:00:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "736", + "openai-processing-ms": "291", "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": "751", + "x-envoy-upstream-service-time": "303", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-4Zpm5VXPDRPpZqU1VtU13K", + "id": "file-CyHtsk7XAWdRabQUBYRjCu", "purpose": "assistants", "filename": "favorite_foods.txt", "bytes": 111, - "created_at": 1758062636, + "created_at": 1761861631, "expires_at": null, "status": "processed", "status_details": null @@ -50,13 +50,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "171", + "Content-Length": "166", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "tools": [ { "type": "file_search", @@ -68,7 +68,7 @@ "vector_stores": [ { "file_ids": [ - "file-4Zpm5VXPDRPpZqU1VtU13K" + "file-CyHtsk7XAWdRabQUBYRjCu" ] } ] @@ -79,28 +79,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e2bb2a7ea354-SEA", + "CF-RAY": "996e2f9baed908e3-SEA", "Connection": "keep-alive", - "Content-Length": "671", + "Content-Length": "666", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:58 GMT", + "Date": "Thu, 30 Oct 2025 22:00:32 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1132", + "openai-processing-ms": "615", "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": "1135", + "x-envoy-upstream-service-time": "619", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_G7MTgsMH6uMIJMr80jO17beH", + "id": "asst_wsbI8mQzYyBDEhJH7F4Eg3tx", "object": "assistant", - "created_at": 1758062637, + "created_at": 1761861631, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -120,7 +121,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e82d845c8191a12e6808d128dd17" + "vs_6903dfff8e488191b32b0612f43a82e5" ] } }, @@ -137,7 +138,7 @@ "Content-Length": "108", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -151,31 +152,32 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e2c2d901a354-SEA", + "CF-RAY": "996e2fa01bd408e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:43:58 GMT", + "Date": "Thu, 30 Oct 2025 22:00:32 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "281", + "openai-processing-ms": "305", "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": "284", + "x-envoy-upstream-service-time": "312", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_Lvms77bcOAVIpVQySrHYgUah", + "id": "thread_JBW8iwCBHFQ5uPCfxzR9TlUf", "object": "thread", - "created_at": 1758062638, + "created_at": 1761861632, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Lvms77bcOAVIpVQySrHYgUah/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_JBW8iwCBHFQ5uPCfxzR9TlUf/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -183,10 +185,10 @@ "Content-Length": "87", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_G7MTgsMH6uMIJMr80jO17beH", + "assistant_id": "asst_wsbI8mQzYyBDEhJH7F4Eg3tx", "additional_messages": [], "stream": true }, @@ -194,68 +196,69 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e2c52b26a354-SEA", + "CF-RAY": "996e2fa29e6e08e3-SEA", "Connection": "keep-alive", "Content-Type": "text/event-stream; charset=utf-8", - "Date": "Tue, 16 Sep 2025 22:44:00 GMT", + "Date": "Thu, 30 Oct 2025 22:00:33 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1314", + "openai-processing-ms": "1398", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1320", + "x-envoy-upstream-service-time": "1402", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": [ "event: thread.run.created\n", - "data: {\"id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"object\":\"thread.run\",\"created_at\":1758062639,\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758063239,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"object\":\"thread.run\",\"created_at\":1761861632,\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862232,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.queued\n", - "data: {\"id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"object\":\"thread.run\",\"created_at\":1758062639,\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758063239,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"object\":\"thread.run\",\"created_at\":1761861632,\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862232,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.in_progress\n", - "data: {\"id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"object\":\"thread.run\",\"created_at\":1758062639,\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"status\":\"in_progress\",\"started_at\":1758062640,\"expires_at\":1758063239,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"object\":\"thread.run\",\"created_at\":1761861632,\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"status\":\"in_progress\",\"started_at\":1761861634,\"expires_at\":1761862232,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_3J8Xx6GjvAyRgRZY3U88uZVl\",\"object\":\"thread.run.step\",\"created_at\":1758062641,\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758063239,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", + "data: {\"id\":\"step_0c79ag3Oq7RXIuR5v9VJ8c5I\",\"object\":\"thread.run.step\",\"created_at\":1761861639,\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862232,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_3J8Xx6GjvAyRgRZY3U88uZVl\",\"object\":\"thread.run.step\",\"created_at\":1758062641,\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758063239,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", + "data: {\"id\":\"step_0c79ag3Oq7RXIuR5v9VJ8c5I\",\"object\":\"thread.run.step\",\"created_at\":1761861639,\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862232,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", "event: thread.run.step.delta\n", - "data: {\"id\":\"step_3J8Xx6GjvAyRgRZY3U88uZVl\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"id\":\"call_lmcJy1oe0rghyILtv1TDTl8J\",\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0},\"results\":[]}}]}}}\n\n", + "data: {\"id\":\"step_0c79ag3Oq7RXIuR5v9VJ8c5I\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"id\":\"call_Ijw9WuTSpuhrnIInrcUzLRsL\",\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0},\"results\":[]}}]}}}\n\n", "event: thread.run.step.completed\n", - "data: {\"id\":\"step_3J8Xx6GjvAyRgRZY3U88uZVl\",\"object\":\"thread.run.step\",\"created_at\":1758062641,\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"type\":\"tool_calls\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758062643,\"expires_at\":1758063239,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"id\":\"call_lmcJy1oe0rghyILtv1TDTl8J\",\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0},\"results\":[{\"file_id\":\"file-4Zpm5VXPDRPpZqU1VtU13K\",\"file_name\":\"favorite_foods.txt\",\"score\":0.6805602656726739,\"attributes\":{},\"content\":[{\"type\":\"text\",\"text\":\"The favorite food of several people:\\n- Summanus Ferdinand: tacos\\n- Tekakwitha Effie: pizza\\n- Filip Carola: cake\"}]}]}}]},\"usage\":{\"prompt_tokens\":830,\"completion_tokens\":20,\"total_tokens\":850,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_0c79ag3Oq7RXIuR5v9VJ8c5I\",\"object\":\"thread.run.step\",\"created_at\":1761861639,\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"type\":\"tool_calls\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861641,\"expires_at\":1761862232,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"id\":\"call_Ijw9WuTSpuhrnIInrcUzLRsL\",\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0},\"results\":[{\"file_id\":\"file-CyHtsk7XAWdRabQUBYRjCu\",\"file_name\":\"favorite_foods.txt\",\"score\":0.6800102176172463,\"attributes\":{},\"content\":[{\"type\":\"text\",\"text\":\"The favorite food of several people:\\n- Summanus Ferdinand: tacos\\n- Tekakwitha Effie: pizza\\n- Filip Carola: cake\"}]}]}}]},\"usage\":{\"prompt_tokens\":830,\"completion_tokens\":20,\"total_tokens\":850,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_lRj1qC4NrJFw1Et4vhLAjIGP\",\"object\":\"thread.run.step\",\"created_at\":1758062643,\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758063239,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_hmYOAd1Lb8Bx9qzQJRN3Se63\",\"object\":\"thread.run.step\",\"created_at\":1761861641,\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862232,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\"}},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_lRj1qC4NrJFw1Et4vhLAjIGP\",\"object\":\"thread.run.step\",\"created_at\":1758062643,\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758063239,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_hmYOAd1Lb8Bx9qzQJRN3Se63\",\"object\":\"thread.run.step\",\"created_at\":1761861641,\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862232,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\"}},\"usage\":null}\n\n", "event: thread.message.created\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message\",\"created_at\":1758062643,\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message\",\"created_at\":1761861641,\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.in_progress\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message\",\"created_at\":1758062643,\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message\",\"created_at\":1761861641,\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Fil\",\"annotations\":[]}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Fil\",\"annotations\":[]}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"ip\"}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"ip\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"'s\"}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"'s\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" favorite\"}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" favorite\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" food\"}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" food\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" is\"}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" is\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" cake\"}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" cake\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"【4:0†favorite_foods.txt】\",\"annotations\":[{\"index\":0,\"type\":\"file_citation\",\"text\":\"【4:0†favorite_foods.txt】\",\"start_index\":29,\"end_index\":53,\"file_citation\":{\"file_id\":\"file-4Zpm5VXPDRPpZqU1VtU13K\",\"quote\":\"\"}}]}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"【4:0†favorite_foods.txt】\",\"annotations\":[{\"index\":0,\"type\":\"file_citation\",\"text\":\"【4:0†favorite_foods.txt】\",\"start_index\":29,\"end_index\":53,\"file_citation\":{\"file_id\":\"file-CyHtsk7XAWdRabQUBYRjCu\",\"quote\":\"\"}}]}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", "event: thread.message.completed\n", - "data: {\"id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\",\"object\":\"thread.message\",\"created_at\":1758062643,\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1758062643,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Filip's favorite food is cake【4:0†favorite_foods.txt】.\",\"annotations\":[{\"type\":\"file_citation\",\"text\":\"【4:0†favorite_foods.txt】\",\"start_index\":29,\"end_index\":53,\"file_citation\":{\"file_id\":\"file-4Zpm5VXPDRPpZqU1VtU13K\"}}]}}],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\",\"object\":\"thread.message\",\"created_at\":1761861641,\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1761861641,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Filip's favorite food is cake【4:0†favorite_foods.txt】.\",\"annotations\":[{\"type\":\"file_citation\",\"text\":\"【4:0†favorite_foods.txt】\",\"start_index\":29,\"end_index\":53,\"file_citation\":{\"file_id\":\"file-CyHtsk7XAWdRabQUBYRjCu\"}}]}}],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.run.step.completed\n", - "data: {\"id\":\"step_lRj1qC4NrJFw1Et4vhLAjIGP\",\"object\":\"thread.run.step\",\"created_at\":1758062643,\"run_id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758062643,\"expires_at\":1758063239,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_sWVrvbQq4CDAI6n3gy3Gkkap\"}},\"usage\":{\"prompt_tokens\":1203,\"completion_tokens\":20,\"total_tokens\":1223,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_hmYOAd1Lb8Bx9qzQJRN3Se63\",\"object\":\"thread.run.step\",\"created_at\":1761861641,\"run_id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861641,\"expires_at\":1761862232,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_QKguDb0ERalCwX44IuQhxGAy\"}},\"usage\":{\"prompt_tokens\":1198,\"completion_tokens\":20,\"total_tokens\":1218,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.completed\n", - "data: {\"id\":\"run_ySyvwILtEQ69XWL3P8RFmYoV\",\"object\":\"thread.run\",\"created_at\":1758062639,\"assistant_id\":\"asst_G7MTgsMH6uMIJMr80jO17beH\",\"thread_id\":\"thread_Lvms77bcOAVIpVQySrHYgUah\",\"status\":\"completed\",\"started_at\":1758062640,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1758062643,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":2033,\"completion_tokens\":40,\"total_tokens\":2073,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_gMAiOdxbrcV3JXHDasJZwr3g\",\"object\":\"thread.run\",\"created_at\":1761861632,\"assistant_id\":\"asst_wsbI8mQzYyBDEhJH7F4Eg3tx\",\"thread_id\":\"thread_JBW8iwCBHFQ5uPCfxzR9TlUf\",\"status\":\"completed\",\"started_at\":1761861634,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1761861642,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":2028,\"completion_tokens\":40,\"total_tokens\":2068,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: done\n", "data: [DONE]\n\n" ] diff --git a/tests/SessionRecords/AssistantsTests/FileSearchStreamingWorksAsync.json b/tests/SessionRecords/AssistantsTests/FileSearchStreamingWorksAsync.json index c86406034..a871305bc 100644 --- a/tests/SessionRecords/AssistantsTests/FileSearchStreamingWorksAsync.json +++ b/tests/SessionRecords/AssistantsTests/FileSearchStreamingWorksAsync.json @@ -7,8 +7,8 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "549", - "Content-Type": "multipart/form-data; boundary=\"c2sJoQ1mNsmZlvxkVcmMVbuy7y5WI1BhQiEi8L8YGpgqhAsfdOqsJTJMwJH8eqlS3gb7eg\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"UjFwstM0HwDNm_AKGKQhg_M6oSOuTyhGDRT8hh_PzzhEjqZ65Zp4qMymQCEFaFDET7VQEV\"", + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, @@ -16,33 +16,29 @@ "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ddf22b7e75cd-SEA", + "CF-RAY": "996e35023a8908e3-SEA", "Connection": "keep-alive", "Content-Length": "242", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:40:41 GMT", + "Date": "Thu, 30 Oct 2025 22:04:13 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "506", + "openai-processing-ms": "610", "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": "526", + "x-envoy-upstream-service-time": "623", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-4SrwpVeF7FvhymR7PjSHxU", + "id": "file-4YHs41Kuh37pBoX4mAKEkN", "purpose": "assistants", "filename": "favorite_foods.txt", "bytes": 111, - "created_at": 1758062441, + "created_at": 1761861852, "expires_at": null, "status": "processed", "status_details": null @@ -54,13 +50,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "171", + "Content-Length": "166", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "tools": [ { "type": "file_search", @@ -72,7 +68,7 @@ "vector_stores": [ { "file_ids": [ - "file-4SrwpVeF7FvhymR7PjSHxU" + "file-4YHs41Kuh37pBoX4mAKEkN" ] } ] @@ -83,28 +79,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ddf66ebb75cd-SEA", + "CF-RAY": "996e3507680f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "671", + "Content-Length": "666", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:40:43 GMT", + "Date": "Thu, 30 Oct 2025 22:04:14 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1064", + "openai-processing-ms": "804", "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": "1101", + "x-envoy-upstream-service-time": "816", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_iDMJYs3l3g6kuEY4Dhevgn7E", + "id": "asst_iFd6yQj3TvLHWFNpW45hvoHg", "object": "assistant", - "created_at": 1758062442, + "created_at": 1761861853, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -124,7 +121,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e76a5c988191a16f6da3e5af966c" + "vs_6903e0ddaf6c8191b486d7612e23de97" ] } }, @@ -141,7 +138,7 @@ "Content-Length": "108", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -155,31 +152,32 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ddfe1bc775cd-SEA", + "CF-RAY": "996e350d2e0a08e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:40:43 GMT", + "Date": "Thu, 30 Oct 2025 22:04:14 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "457", + "openai-processing-ms": "355", "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": "472", + "x-envoy-upstream-service-time": "358", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_Wnj5IRlE8zi6zo6f8hT3Vm7d", + "id": "thread_D6qZM15UafaTPBIKpFWMHX4z", "object": "thread", - "created_at": 1758062443, + "created_at": 1761861854, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Wnj5IRlE8zi6zo6f8hT3Vm7d/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_D6qZM15UafaTPBIKpFWMHX4z/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -187,10 +185,10 @@ "Content-Length": "87", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_iDMJYs3l3g6kuEY4Dhevgn7E", + "assistant_id": "asst_iFd6yQj3TvLHWFNpW45hvoHg", "additional_messages": [], "stream": true }, @@ -198,68 +196,69 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803de01ce9b75cd-SEA", + "CF-RAY": "996e3510094208e3-SEA", "Connection": "keep-alive", "Content-Type": "text/event-stream; charset=utf-8", - "Date": "Tue, 16 Sep 2025 22:40:45 GMT", + "Date": "Thu, 30 Oct 2025 22:04:16 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1476", + "openai-processing-ms": "1458", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1486", + "x-envoy-upstream-service-time": "1463", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": [ "event: thread.run.created\n", - "data: {\"id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"object\":\"thread.run\",\"created_at\":1758062444,\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758063044,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"object\":\"thread.run\",\"created_at\":1761861855,\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862455,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.queued\n", - "data: {\"id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"object\":\"thread.run\",\"created_at\":1758062444,\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758063044,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"object\":\"thread.run\",\"created_at\":1761861855,\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862455,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.in_progress\n", - "data: {\"id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"object\":\"thread.run\",\"created_at\":1758062444,\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"status\":\"in_progress\",\"started_at\":1758062445,\"expires_at\":1758063044,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"object\":\"thread.run\",\"created_at\":1761861855,\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"status\":\"in_progress\",\"started_at\":1761861856,\"expires_at\":1761862455,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_3Tk0DgBubLqFxIvnbNf9o43p\",\"object\":\"thread.run.step\",\"created_at\":1758062446,\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758063044,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", + "data: {\"id\":\"step_Ghe1ZJvj0ZD8RN6sNZcDMdCO\",\"object\":\"thread.run.step\",\"created_at\":1761861858,\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862455,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_3Tk0DgBubLqFxIvnbNf9o43p\",\"object\":\"thread.run.step\",\"created_at\":1758062446,\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758063044,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", + "data: {\"id\":\"step_Ghe1ZJvj0ZD8RN6sNZcDMdCO\",\"object\":\"thread.run.step\",\"created_at\":1761861858,\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862455,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", "event: thread.run.step.delta\n", - "data: {\"id\":\"step_3Tk0DgBubLqFxIvnbNf9o43p\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"id\":\"call_xLEnZ2tVMsuMQsBu4UOGQ38V\",\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0},\"results\":[]}}]}}}\n\n", + "data: {\"id\":\"step_Ghe1ZJvj0ZD8RN6sNZcDMdCO\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"id\":\"call_yrPRrkyKenmBW0lZuuLgPKYW\",\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0},\"results\":[]}}]}}}\n\n", "event: thread.run.step.completed\n", - "data: {\"id\":\"step_3Tk0DgBubLqFxIvnbNf9o43p\",\"object\":\"thread.run.step\",\"created_at\":1758062446,\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"type\":\"tool_calls\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758062448,\"expires_at\":1758063044,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"id\":\"call_xLEnZ2tVMsuMQsBu4UOGQ38V\",\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0},\"results\":[{\"file_id\":\"file-4SrwpVeF7FvhymR7PjSHxU\",\"file_name\":\"favorite_foods.txt\",\"score\":0.6805602656726739,\"attributes\":{},\"content\":[{\"type\":\"text\",\"text\":\"The favorite food of several people:\\n- Summanus Ferdinand: tacos\\n- Tekakwitha Effie: pizza\\n- Filip Carola: cake\"}]}]}}]},\"usage\":{\"prompt_tokens\":830,\"completion_tokens\":31,\"total_tokens\":861,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_Ghe1ZJvj0ZD8RN6sNZcDMdCO\",\"object\":\"thread.run.step\",\"created_at\":1761861858,\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"type\":\"tool_calls\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861859,\"expires_at\":1761862455,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"id\":\"call_yrPRrkyKenmBW0lZuuLgPKYW\",\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0},\"results\":[{\"file_id\":\"file-4YHs41Kuh37pBoX4mAKEkN\",\"file_name\":\"favorite_foods.txt\",\"score\":0.6800102176172463,\"attributes\":{},\"content\":[{\"type\":\"text\",\"text\":\"The favorite food of several people:\\n- Summanus Ferdinand: tacos\\n- Tekakwitha Effie: pizza\\n- Filip Carola: cake\"}]}]}}]},\"usage\":{\"prompt_tokens\":830,\"completion_tokens\":20,\"total_tokens\":850,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_bVnnHGrH7Ogf3XGliiWCjR1G\",\"object\":\"thread.run.step\",\"created_at\":1758062448,\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758063044,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_HRxeU5QI4zFVvTODXsoelkYu\",\"object\":\"thread.run.step\",\"created_at\":1761861859,\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862455,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\"}},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_bVnnHGrH7Ogf3XGliiWCjR1G\",\"object\":\"thread.run.step\",\"created_at\":1758062448,\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758063044,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_HRxeU5QI4zFVvTODXsoelkYu\",\"object\":\"thread.run.step\",\"created_at\":1761861859,\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862455,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\"}},\"usage\":null}\n\n", "event: thread.message.created\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message\",\"created_at\":1758062448,\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message\",\"created_at\":1761861859,\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.in_progress\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message\",\"created_at\":1758062448,\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message\",\"created_at\":1761861859,\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Fil\",\"annotations\":[]}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Fil\",\"annotations\":[]}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"ip\"}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"ip\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"'s\"}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"'s\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" favorite\"}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" favorite\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" food\"}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" food\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" is\"}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" is\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" cake\"}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" cake\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"【4:0†favorite_foods.txt】\",\"annotations\":[{\"index\":0,\"type\":\"file_citation\",\"text\":\"【4:0†favorite_foods.txt】\",\"start_index\":29,\"end_index\":53,\"file_citation\":{\"file_id\":\"file-4SrwpVeF7FvhymR7PjSHxU\",\"quote\":\"\"}}]}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"【4:0†favorite_foods.txt】\",\"annotations\":[{\"index\":0,\"type\":\"file_citation\",\"text\":\"【4:0†favorite_foods.txt】\",\"start_index\":29,\"end_index\":53,\"file_citation\":{\"file_id\":\"file-4YHs41Kuh37pBoX4mAKEkN\",\"quote\":\"\"}}]}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", "event: thread.message.completed\n", - "data: {\"id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\",\"object\":\"thread.message\",\"created_at\":1758062448,\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1758062449,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Filip's favorite food is cake【4:0†favorite_foods.txt】.\",\"annotations\":[{\"type\":\"file_citation\",\"text\":\"【4:0†favorite_foods.txt】\",\"start_index\":29,\"end_index\":53,\"file_citation\":{\"file_id\":\"file-4SrwpVeF7FvhymR7PjSHxU\"}}]}}],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\",\"object\":\"thread.message\",\"created_at\":1761861859,\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1761861859,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Filip's favorite food is cake【4:0†favorite_foods.txt】.\",\"annotations\":[{\"type\":\"file_citation\",\"text\":\"【4:0†favorite_foods.txt】\",\"start_index\":29,\"end_index\":53,\"file_citation\":{\"file_id\":\"file-4YHs41Kuh37pBoX4mAKEkN\"}}]}}],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.run.step.completed\n", - "data: {\"id\":\"step_bVnnHGrH7Ogf3XGliiWCjR1G\",\"object\":\"thread.run.step\",\"created_at\":1758062448,\"run_id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758062449,\"expires_at\":1758063044,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_qytGAT5W98jMnEr8dHJouB1Z\"}},\"usage\":{\"prompt_tokens\":1212,\"completion_tokens\":20,\"total_tokens\":1232,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_HRxeU5QI4zFVvTODXsoelkYu\",\"object\":\"thread.run.step\",\"created_at\":1761861859,\"run_id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861860,\"expires_at\":1761862455,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_2m8nOXQFmOu5nBoyAM2iWSi2\"}},\"usage\":{\"prompt_tokens\":1200,\"completion_tokens\":20,\"total_tokens\":1220,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.completed\n", - "data: {\"id\":\"run_r7qgTdFmdU1CZxTqGxTHs1K3\",\"object\":\"thread.run\",\"created_at\":1758062444,\"assistant_id\":\"asst_iDMJYs3l3g6kuEY4Dhevgn7E\",\"thread_id\":\"thread_Wnj5IRlE8zi6zo6f8hT3Vm7d\",\"status\":\"completed\",\"started_at\":1758062445,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1758062449,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":2042,\"completion_tokens\":51,\"total_tokens\":2093,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_nezDdZLDckoW8VYMlRPSTuJK\",\"object\":\"thread.run\",\"created_at\":1761861855,\"assistant_id\":\"asst_iFd6yQj3TvLHWFNpW45hvoHg\",\"thread_id\":\"thread_D6qZM15UafaTPBIKpFWMHX4z\",\"status\":\"completed\",\"started_at\":1761861856,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1761861860,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"file_search\",\"file_search\":{\"ranking_options\":{\"ranker\":\"default_2024_08_21\",\"score_threshold\":0.0,\"hybrid_search\":null}}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":2030,\"completion_tokens\":40,\"total_tokens\":2070,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: done\n", "data: [DONE]\n\n" ] diff --git a/tests/SessionRecords/AssistantsTests/FileSearchWorks.json b/tests/SessionRecords/AssistantsTests/FileSearchWorks.json index 29c0690a7..f028d2e01 100644 --- a/tests/SessionRecords/AssistantsTests/FileSearchWorks.json +++ b/tests/SessionRecords/AssistantsTests/FileSearchWorks.json @@ -7,8 +7,8 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "565", - "Content-Type": "multipart/form-data; boundary=\"U12W3aSZ7scYFcxxoSgU0rvXuhHtbzNs0Sj6FJ8i=BAa1We5IKD_DIiyeLzyc3uIYvMs7D\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"cc9S6dtmMfQ7Vavuyxu26ikFq16RqYm7=yS8uGsXToiccClB8BN9VNHjXHBQV=SSye9H0b\"", + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, @@ -16,29 +16,29 @@ "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e2e7ea55a354-SEA", + "CF-RAY": "996e3077aff908e3-SEA", "Connection": "keep-alive", "Content-Length": "242", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:04 GMT", + "Date": "Thu, 30 Oct 2025 22:01:06 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "348", + "openai-processing-ms": "187", "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": "357", + "x-envoy-upstream-service-time": "194", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-BAeAhK7EGkzzcbVbWmEqKw", + "id": "file-DLCAr5NoVMw44WT3FrWWva", "purpose": "assistants", "filename": "favorite_foods.txt", "bytes": 127, - "created_at": 1758062644, + "created_at": 1761861666, "expires_at": null, "status": "processed", "status_details": null @@ -50,13 +50,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "262", + "Content-Length": "257", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "tools": [ { "type": "file_search", @@ -74,7 +74,7 @@ "vector_stores": [ { "file_ids": [ - "file-BAeAhK7EGkzzcbVbWmEqKw" + "file-DLCAr5NoVMw44WT3FrWWva" ] } ] @@ -85,28 +85,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e2eabcb5a354-SEA", + "CF-RAY": "996e307979de08e3-SEA", "Connection": "keep-alive", - "Content-Length": "701", + "Content-Length": "696", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:07 GMT", + "Date": "Thu, 30 Oct 2025 22:01:07 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1013", + "openai-processing-ms": "934", "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": "2454", + "x-envoy-upstream-service-time": "954", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_lJotryEuKzR0W3wJso700WJf", + "id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", "object": "assistant", - "created_at": 1758062646, + "created_at": 1761861667, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -127,7 +128,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e836cc188191aa245985d6899eee" + "vs_6903e02342e08191bd5cee0d90722014" ] } }, @@ -136,7 +137,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_lJotryEuKzR0W3wJso700WJf", + "RequestUri": "https://api.openai.com/v1/assistants/asst_tTOTTKEJcjUILn1BDZTAwuwY", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -144,13 +145,13 @@ "Content-Length": "95", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e836cc188191aa245985d6899eee" + "vs_6903e02342e08191bd5cee0d90722014" ] } } @@ -159,28 +160,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e2fabc59a354-SEA", + "CF-RAY": "996e307ff96508e3-SEA", "Connection": "keep-alive", - "Content-Length": "701", + "Content-Length": "696", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:08 GMT", + "Date": "Thu, 30 Oct 2025 22:01:08 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "620", + "openai-processing-ms": "806", "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": "627", + "x-envoy-upstream-service-time": "824", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_lJotryEuKzR0W3wJso700WJf", + "id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", "object": "assistant", - "created_at": 1758062646, + "created_at": 1761861667, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -201,7 +203,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e836cc188191aa245985d6899eee" + "vs_6903e02342e08191bd5cee0d90722014" ] } }, @@ -218,7 +220,7 @@ "Content-Length": "206", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -232,7 +234,7 @@ "vector_stores": [ { "file_ids": [ - "file-BAeAhK7EGkzzcbVbWmEqKw" + "file-DLCAr5NoVMw44WT3FrWWva" ] } ] @@ -243,37 +245,38 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e2ff2855a354-SEA", + "CF-RAY": "996e3085cf7108e3-SEA", "Connection": "keep-alive", "Content-Length": "249", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:09 GMT", + "Date": "Thu, 30 Oct 2025 22:01:09 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "990", + "openai-processing-ms": "1000", "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": "999", + "x-envoy-upstream-service-time": "1003", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_WVurU3YlK6aXe25Wgw19di3V", + "id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", "object": "thread", - "created_at": 1758062648, + "created_at": 1761861668, "metadata": {}, "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8387754819195d7b01980400aa3" + "vs_6903e024f500819193013113ef2edc7e" ] } } } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_WVurU3YlK6aXe25Wgw19di3V", + "RequestUri": "https://api.openai.com/v1/threads/thread_Q1yKHOMIqQaRApLIyDkJgISP", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -281,13 +284,13 @@ "Content-Length": "95", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8387754819195d7b01980400aa3" + "vs_6903e024f500819193013113ef2edc7e" ] } } @@ -296,37 +299,38 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e305fd98a354-SEA", + "CF-RAY": "996e308cae9808e3-SEA", "Connection": "keep-alive", "Content-Length": "249", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:09 GMT", + "Date": "Thu, 30 Oct 2025 22:01:10 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "590", + "openai-processing-ms": "917", "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": "594", + "x-envoy-upstream-service-time": "971", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_WVurU3YlK6aXe25Wgw19di3V", + "id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", "object": "thread", - "created_at": 1758062648, + "created_at": 1761861668, "metadata": {}, "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8387754819195d7b01980400aa3" + "vs_6903e024f500819193013113ef2edc7e" ] } } } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_WVurU3YlK6aXe25Wgw19di3V/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_Q1yKHOMIqQaRApLIyDkJgISP/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -334,122 +338,47 @@ "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", + "assistant_id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", "additional_messages": [] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e30a4961a354-SEA", + "CF-RAY": "996e30933dcf08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1084", + "Content-Length": "1079", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:11 GMT", + "Date": "Thu, 30 Oct 2025 22:01:12 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1327", + "openai-processing-ms": "1121", "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": "1365", + "x-envoy-upstream-service-time": "1125", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_MyZVV8cpRjqS73PjzKfSyB8H", + "id": "run_6QwP49pI2IbnMIXITa0gjzw7", "object": "thread.run", - "created_at": 1758062650, - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", + "created_at": 1761861671, + "assistant_id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", + "thread_id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", "status": "queued", "started_at": null, - "expires_at": 1758063250, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [ - { - "type": "file_search", - "file_search": { - "max_num_results": 2, - "ranking_options": { - "ranker": "default_2024_08_21", - "score_threshold": 0.5, - "hybrid_search": null - } - } - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_WVurU3YlK6aXe25Wgw19di3V/runs/run_MyZVV8cpRjqS73PjzKfSyB8H", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e31a4807a354-SEA", - "Connection": "keep-alive", - "Content-Length": "1095", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:13 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "396", - "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": "426", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_MyZVV8cpRjqS73PjzKfSyB8H", - "object": "thread.run", - "created_at": 1758062650, - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", - "status": "in_progress", - "started_at": 1758062651, - "expires_at": 1758063250, + "expires_at": 1761862271, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -483,125 +412,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_WVurU3YlK6aXe25Wgw19di3V/runs/run_MyZVV8cpRjqS73PjzKfSyB8H", + "RequestUri": "https://api.openai.com/v1/threads/thread_Q1yKHOMIqQaRApLIyDkJgISP/runs/run_6QwP49pI2IbnMIXITa0gjzw7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e323cec2a354-SEA", + "CF-RAY": "996e30ba2f4208e3-SEA", "Connection": "keep-alive", - "Content-Length": "1095", + "Content-Length": "1302", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:14 GMT", + "Date": "Thu, 30 Oct 2025 22:01:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "203", + "openai-processing-ms": "182", "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": "209", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_MyZVV8cpRjqS73PjzKfSyB8H", - "object": "thread.run", - "created_at": 1758062650, - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", - "status": "in_progress", - "started_at": 1758062651, - "expires_at": 1758063250, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [ - { - "type": "file_search", - "file_search": { - "max_num_results": 2, - "ranking_options": { - "ranker": "default_2024_08_21", - "score_threshold": 0.5, - "hybrid_search": null - } - } - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_WVurU3YlK6aXe25Wgw19di3V/runs/run_MyZVV8cpRjqS73PjzKfSyB8H", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e32bdd2ca354-SEA", - "Connection": "keep-alive", - "Content-Length": "1307", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:15 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "327", - "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": "517", + "x-envoy-upstream-service-time": "190", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_MyZVV8cpRjqS73PjzKfSyB8H", + "id": "run_6QwP49pI2IbnMIXITa0gjzw7", "object": "thread.run", - "created_at": 1758062650, - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", + "created_at": 1761861671, + "assistant_id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", + "thread_id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", "status": "completed", - "started_at": 1758062651, + "started_at": 1761861672, "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": 1758062655, + "completed_at": 1761861676, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -629,9 +483,9 @@ }, "incomplete_details": null, "usage": { - "prompt_tokens": 2120, - "completion_tokens": 53, - "total_tokens": 2173, + "prompt_tokens": 2100, + "completion_tokens": 39, + "total_tokens": 2139, "prompt_token_details": { "cached_tokens": 0 }, @@ -645,44 +499,45 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_WVurU3YlK6aXe25Wgw19di3V/messages?order=desc", + "RequestUri": "https://api.openai.com/v1/threads/thread_Q1yKHOMIqQaRApLIyDkJgISP/messages?order=desc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e32fd824a354-SEA", + "CF-RAY": "996e30bbe96708e3-SEA", "Connection": "keep-alive", "Content-Length": "1569", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:16 GMT", + "Date": "Thu, 30 Oct 2025 22:01:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "77", + "openai-processing-ms": "41", "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": "83", + "x-envoy-upstream-service-time": "45", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_xNoGRGOhm5BLCZvjJBrAgbgO", + "id": "msg_zyAMtKD6txa2gyHZxCFDawwj", "object": "thread.message", - "created_at": 1758062654, - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", - "run_id": "run_MyZVV8cpRjqS73PjzKfSyB8H", + "created_at": 1761861675, + "assistant_id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", + "thread_id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", + "run_id": "run_6QwP49pI2IbnMIXITa0gjzw7", "role": "assistant", "content": [ { @@ -696,7 +551,7 @@ "start_index": 29, "end_index": 53, "file_citation": { - "file_id": "file-BAeAhK7EGkzzcbVbWmEqKw" + "file_id": "file-DLCAr5NoVMw44WT3FrWWva" } } ] @@ -707,11 +562,11 @@ "metadata": {} }, { - "id": "msg_Ont12ScF4t4I53isT5VAX8OJ", + "id": "msg_NyUs2Tg9okmHzRvJZuAaSFHp", "object": "thread.message", - "created_at": 1758062648, + "created_at": 1761861669, "assistant_id": null, - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", + "thread_id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", "run_id": null, "role": "user", "content": [ @@ -727,67 +582,68 @@ "metadata": {} } ], - "first_id": "msg_xNoGRGOhm5BLCZvjJBrAgbgO", - "last_id": "msg_Ont12ScF4t4I53isT5VAX8OJ", + "first_id": "msg_zyAMtKD6txa2gyHZxCFDawwj", + "last_id": "msg_NyUs2Tg9okmHzRvJZuAaSFHp", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_WVurU3YlK6aXe25Wgw19di3V/runs/run_MyZVV8cpRjqS73PjzKfSyB8H/steps?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_Q1yKHOMIqQaRApLIyDkJgISP/runs/run_6QwP49pI2IbnMIXITa0gjzw7/steps?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e330e8f6a354-SEA", + "CF-RAY": "996e30bcba5708e3-SEA", "Connection": "keep-alive", "Content-Length": "3315", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:17 GMT", + "Date": "Thu, 30 Oct 2025 22:01:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "830", + "openai-processing-ms": "146", "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": "836", + "x-envoy-upstream-service-time": "157", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "step_BUew4HYdMfdII2alVYoWyp6e", + "id": "step_blvuuDtiOsnwyT0pSzHhY7rX", "object": "thread.run.step", - "created_at": 1758062654, - "run_id": "run_MyZVV8cpRjqS73PjzKfSyB8H", - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", + "created_at": 1761861675, + "run_id": "run_6QwP49pI2IbnMIXITa0gjzw7", + "assistant_id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", + "thread_id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062654, + "completed_at": 1761861676, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_xNoGRGOhm5BLCZvjJBrAgbgO" + "message_id": "msg_zyAMtKD6txa2gyHZxCFDawwj" } }, "usage": { - "prompt_tokens": 1290, + "prompt_tokens": 1270, "completion_tokens": 20, - "total_tokens": 1310, + "total_tokens": 1290, "prompt_token_details": { "cached_tokens": 0 }, @@ -797,16 +653,16 @@ } }, { - "id": "step_9iccuRtMD0kDwZBaqZQxWbAK", + "id": "step_kjJ6wGf84Tj7yjMbNW8ojZ6c", "object": "thread.run.step", - "created_at": 1758062653, - "run_id": "run_MyZVV8cpRjqS73PjzKfSyB8H", - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", + "created_at": 1761861674, + "run_id": "run_6QwP49pI2IbnMIXITa0gjzw7", + "assistant_id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", + "thread_id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062654, + "completed_at": 1761861675, "expires_at": null, "failed_at": null, "last_error": null, @@ -814,7 +670,7 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_gmC8Lfo9k57nv9bkdsJqSGp7", + "id": "call_pClJkG2IKRb0oPoa0AKoUI5f", "type": "file_search", "file_search": { "ranking_options": { @@ -823,9 +679,9 @@ }, "results": [ { - "file_id": "file-BAeAhK7EGkzzcbVbWmEqKw", + "file_id": "file-DLCAr5NoVMw44WT3FrWWva", "file_name": "favorite_foods.txt", - "score": 0.7308348177280622, + "score": 0.7506859036913381, "attributes": {}, "content": [ { @@ -835,9 +691,9 @@ ] }, { - "file_id": "file-BAeAhK7EGkzzcbVbWmEqKw", + "file_id": "file-DLCAr5NoVMw44WT3FrWWva", "file_name": "favorite_foods.txt", - "score": 0.7306564677557378, + "score": 0.7506859036913381, "attributes": {}, "content": [ { @@ -853,8 +709,8 @@ }, "usage": { "prompt_tokens": 830, - "completion_tokens": 33, - "total_tokens": 863, + "completion_tokens": 19, + "total_tokens": 849, "prompt_token_details": { "cached_tokens": 0 }, @@ -864,51 +720,52 @@ } } ], - "first_id": "step_BUew4HYdMfdII2alVYoWyp6e", - "last_id": "step_9iccuRtMD0kDwZBaqZQxWbAK", + "first_id": "step_blvuuDtiOsnwyT0pSzHhY7rX", + "last_id": "step_kjJ6wGf84Tj7yjMbNW8ojZ6c", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_WVurU3YlK6aXe25Wgw19di3V/runs/run_MyZVV8cpRjqS73PjzKfSyB8H/steps/step_9iccuRtMD0kDwZBaqZQxWbAK?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_Q1yKHOMIqQaRApLIyDkJgISP/runs/run_6QwP49pI2IbnMIXITa0gjzw7/steps/step_kjJ6wGf84Tj7yjMbNW8ojZ6c?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e336ad54a354-SEA", + "CF-RAY": "996e30be5c1d08e3-SEA", "Connection": "keep-alive", "Content-Length": "1971", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:17 GMT", + "Date": "Thu, 30 Oct 2025 22:01:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "256", + "openai-processing-ms": "58", "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": "320", + "x-envoy-upstream-service-time": "64", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "step_9iccuRtMD0kDwZBaqZQxWbAK", + "id": "step_kjJ6wGf84Tj7yjMbNW8ojZ6c", "object": "thread.run.step", - "created_at": 1758062653, - "run_id": "run_MyZVV8cpRjqS73PjzKfSyB8H", - "assistant_id": "asst_lJotryEuKzR0W3wJso700WJf", - "thread_id": "thread_WVurU3YlK6aXe25Wgw19di3V", + "created_at": 1761861674, + "run_id": "run_6QwP49pI2IbnMIXITa0gjzw7", + "assistant_id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", + "thread_id": "thread_Q1yKHOMIqQaRApLIyDkJgISP", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062654, + "completed_at": 1761861675, "expires_at": null, "failed_at": null, "last_error": null, @@ -916,7 +773,7 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_gmC8Lfo9k57nv9bkdsJqSGp7", + "id": "call_pClJkG2IKRb0oPoa0AKoUI5f", "type": "file_search", "file_search": { "ranking_options": { @@ -925,9 +782,9 @@ }, "results": [ { - "file_id": "file-BAeAhK7EGkzzcbVbWmEqKw", + "file_id": "file-DLCAr5NoVMw44WT3FrWWva", "file_name": "favorite_foods.txt", - "score": 0.7308348177280622, + "score": 0.7506859036913381, "attributes": {}, "content": [ { @@ -937,9 +794,9 @@ ] }, { - "file_id": "file-BAeAhK7EGkzzcbVbWmEqKw", + "file_id": "file-DLCAr5NoVMw44WT3FrWWva", "file_name": "favorite_foods.txt", - "score": 0.7306564677557378, + "score": 0.7506859036913381, "attributes": {}, "content": [ { @@ -955,8 +812,8 @@ }, "usage": { "prompt_tokens": 830, - "completion_tokens": 33, - "total_tokens": 863, + "completion_tokens": 19, + "total_tokens": 849, "prompt_token_details": { "cached_tokens": 0 }, diff --git a/tests/SessionRecords/AssistantsTests/FileSearchWorksAsync.json b/tests/SessionRecords/AssistantsTests/FileSearchWorksAsync.json index 9c3ee9ef3..84ccedbaf 100644 --- a/tests/SessionRecords/AssistantsTests/FileSearchWorksAsync.json +++ b/tests/SessionRecords/AssistantsTests/FileSearchWorksAsync.json @@ -7,8 +7,8 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "565", - "Content-Type": "multipart/form-data; boundary=\"H8bF1bP3AtlCpkHFyqL45U4ZBx=SDRPjjMo6rzbChQnEVRdkCW6P_yoaYPhLzfhDpsXmWI\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"B=b7qwodOv69pZA4=N3yK_evKgXZpyDpZxVBkm0jmhU4bgdBLF47dVL66FVCL_8yrz9rq5\"", + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, @@ -16,29 +16,29 @@ "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e6d28ef0a354-SEA", + "CF-RAY": "996e35cbbfce08e3-SEA", "Connection": "keep-alive", "Content-Length": "242", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:45 GMT", + "Date": "Thu, 30 Oct 2025 22:04:45 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "892", + "openai-processing-ms": "344", "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": "958", + "x-envoy-upstream-service-time": "351", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-AKmDMuK6BSFoaFXToEQsXM", + "id": "file-KWAWzm51oenkSYgJcReEu1", "purpose": "assistants", "filename": "favorite_foods.txt", "bytes": 127, - "created_at": 1758062805, + "created_at": 1761861884, "expires_at": null, "status": "processed", "status_details": null @@ -50,13 +50,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "262", + "Content-Length": "257", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "tools": [ { "type": "file_search", @@ -74,7 +74,7 @@ "vector_stores": [ { "file_ids": [ - "file-AKmDMuK6BSFoaFXToEQsXM" + "file-KWAWzm51oenkSYgJcReEu1" ] } ] @@ -85,28 +85,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e6d92caaa354-SEA", + "CF-RAY": "996e35ceaa2c08e3-SEA", "Connection": "keep-alive", - "Content-Length": "701", + "Content-Length": "696", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:46 GMT", + "Date": "Thu, 30 Oct 2025 22:04:46 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "800", + "openai-processing-ms": "986", "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": "804", + "x-envoy-upstream-service-time": "1008", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_0Gem2dH92Ovn7frnv7gHP588", + "id": "asst_J253GyRUaZJy0vc9qA6LmDG6", "object": "assistant", - "created_at": 1758062806, + "created_at": 1761861885, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -127,7 +128,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8d64f8c819197198d7a027ac524" + "vs_6903e0fdc7d481918342ac12bcc9c3b3" ] } }, @@ -136,7 +137,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_0Gem2dH92Ovn7frnv7gHP588", + "RequestUri": "https://api.openai.com/v1/assistants/asst_J253GyRUaZJy0vc9qA6LmDG6", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -144,13 +145,13 @@ "Content-Length": "95", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8d64f8c819197198d7a027ac524" + "vs_6903e0fdc7d481918342ac12bcc9c3b3" ] } } @@ -159,28 +160,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e6dec954a354-SEA", + "CF-RAY": "996e35d598ca08e3-SEA", "Connection": "keep-alive", - "Content-Length": "701", + "Content-Length": "696", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:47 GMT", + "Date": "Thu, 30 Oct 2025 22:04:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "689", + "openai-processing-ms": "640", "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": "696", + "x-envoy-upstream-service-time": "651", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_0Gem2dH92Ovn7frnv7gHP588", + "id": "asst_J253GyRUaZJy0vc9qA6LmDG6", "object": "assistant", - "created_at": 1758062806, + "created_at": 1761861885, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -201,7 +203,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8d64f8c819197198d7a027ac524" + "vs_6903e0fdc7d481918342ac12bcc9c3b3" ] } }, @@ -218,7 +220,7 @@ "Content-Length": "206", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -232,7 +234,7 @@ "vector_stores": [ { "file_ids": [ - "file-AKmDMuK6BSFoaFXToEQsXM" + "file-KWAWzm51oenkSYgJcReEu1" ] } ] @@ -243,37 +245,38 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e6e3ad5da354-SEA", + "CF-RAY": "996e35da3d2a08e3-SEA", "Connection": "keep-alive", "Content-Length": "249", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:48 GMT", + "Date": "Thu, 30 Oct 2025 22:04:48 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1036", + "openai-processing-ms": "906", "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": "1041", + "x-envoy-upstream-service-time": "914", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", + "id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", "object": "thread", - "created_at": 1758062807, + "created_at": 1761861887, "metadata": {}, "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8d7dcec8191914d69ea071604b7" + "vs_6903e0ff4acc819180691c301b90a3a0" ] } } } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_cP8vOv2RMtfUV56644Kv8ktQ", + "RequestUri": "https://api.openai.com/v1/threads/thread_qlsEoLJsJH7QqKNlDhFr95qJ", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -281,13 +284,13 @@ "Content-Length": "95", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8d7dcec8191914d69ea071604b7" + "vs_6903e0ff4acc819180691c301b90a3a0" ] } } @@ -296,37 +299,38 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e6ebbbf4a354-SEA", + "CF-RAY": "996e35e07b6e08e3-SEA", "Connection": "keep-alive", "Content-Length": "249", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:49 GMT", + "Date": "Thu, 30 Oct 2025 22:04:48 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "770", + "openai-processing-ms": "456", "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": "780", + "x-envoy-upstream-service-time": "459", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", + "id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", "object": "thread", - "created_at": 1758062807, + "created_at": 1761861887, "metadata": {}, "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e8d7dcec8191914d69ea071604b7" + "vs_6903e0ff4acc819180691c301b90a3a0" ] } } } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_cP8vOv2RMtfUV56644Kv8ktQ/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_qlsEoLJsJH7QqKNlDhFr95qJ/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -334,122 +338,47 @@ "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_0Gem2dH92Ovn7frnv7gHP588", + "assistant_id": "asst_J253GyRUaZJy0vc9qA6LmDG6", "additional_messages": [] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e6f128a6a354-SEA", + "CF-RAY": "996e35e3effb08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1084", + "Content-Length": "1079", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:51 GMT", + "Date": "Thu, 30 Oct 2025 22:04:49 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1485", + "openai-processing-ms": "1224", "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": "1490", + "x-envoy-upstream-service-time": "1229", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_p1JwB1aC7vUsSboxOUKicbDX", + "id": "run_KRHP4BKmgPXWM2RCQcMT4iGU", "object": "thread.run", - "created_at": 1758062810, - "assistant_id": "asst_0Gem2dH92Ovn7frnv7gHP588", - "thread_id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", + "created_at": 1761861889, + "assistant_id": "asst_J253GyRUaZJy0vc9qA6LmDG6", + "thread_id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", "status": "queued", "started_at": null, - "expires_at": 1758063410, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [ - { - "type": "file_search", - "file_search": { - "max_num_results": 2, - "ranking_options": { - "ranker": "default_2024_08_21", - "score_threshold": 0.5, - "hybrid_search": null - } - } - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_cP8vOv2RMtfUV56644Kv8ktQ/runs/run_p1JwB1aC7vUsSboxOUKicbDX", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e7014df4a354-SEA", - "Connection": "keep-alive", - "Content-Length": "1095", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:54 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "1931", - "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": "2267", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_p1JwB1aC7vUsSboxOUKicbDX", - "object": "thread.run", - "created_at": 1758062810, - "assistant_id": "asst_0Gem2dH92Ovn7frnv7gHP588", - "thread_id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", - "status": "in_progress", - "started_at": 1758062811, - "expires_at": 1758063410, + "expires_at": 1761862489, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -483,49 +412,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_cP8vOv2RMtfUV56644Kv8ktQ/runs/run_p1JwB1aC7vUsSboxOUKicbDX", + "RequestUri": "https://api.openai.com/v1/threads/thread_qlsEoLJsJH7QqKNlDhFr95qJ/runs/run_KRHP4BKmgPXWM2RCQcMT4iGU", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e71849a8a354-SEA", + "CF-RAY": "996e360b6e0c08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1307", + "Content-Length": "1302", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:56 GMT", + "Date": "Thu, 30 Oct 2025 22:04:55 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "172", + "openai-processing-ms": "222", "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": "176", + "x-envoy-upstream-service-time": "229", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_p1JwB1aC7vUsSboxOUKicbDX", + "id": "run_KRHP4BKmgPXWM2RCQcMT4iGU", "object": "thread.run", - "created_at": 1758062810, - "assistant_id": "asst_0Gem2dH92Ovn7frnv7gHP588", - "thread_id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", + "created_at": 1761861889, + "assistant_id": "asst_J253GyRUaZJy0vc9qA6LmDG6", + "thread_id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", "status": "completed", - "started_at": 1758062811, + "started_at": 1761861890, "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": 1758062815, + "completed_at": 1761861893, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -569,58 +499,59 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_cP8vOv2RMtfUV56644Kv8ktQ/messages?order=desc", + "RequestUri": "https://api.openai.com/v1/threads/thread_qlsEoLJsJH7QqKNlDhFr95qJ/messages?order=desc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e719eaeaa354-SEA", + "CF-RAY": "996e360d5fc108e3-SEA", "Connection": "keep-alive", "Content-Length": "1569", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:56 GMT", + "Date": "Thu, 30 Oct 2025 22:04:55 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "395", + "openai-processing-ms": "97", "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": "484", + "x-envoy-upstream-service-time": "107", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_QnD0LZfdNkhTDzwJvZiXewmZ", + "id": "msg_nAQqVDv3q8BfSeDyQwNnXVSm", "object": "thread.message", - "created_at": 1758062814, - "assistant_id": "asst_0Gem2dH92Ovn7frnv7gHP588", - "thread_id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", - "run_id": "run_p1JwB1aC7vUsSboxOUKicbDX", + "created_at": 1761861893, + "assistant_id": "asst_J253GyRUaZJy0vc9qA6LmDG6", + "thread_id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", + "run_id": "run_KRHP4BKmgPXWM2RCQcMT4iGU", "role": "assistant", "content": [ { "type": "text", "text": { - "value": "Filip's favorite food is cake【4:0†favorite_foods.txt】.", + "value": "Filip's favorite food is cake【4:1†favorite_foods.txt】.", "annotations": [ { "type": "file_citation", - "text": "【4:0†favorite_foods.txt】", + "text": "【4:1†favorite_foods.txt】", "start_index": 29, "end_index": 53, "file_citation": { - "file_id": "file-AKmDMuK6BSFoaFXToEQsXM" + "file_id": "file-KWAWzm51oenkSYgJcReEu1" } } ] @@ -631,11 +562,11 @@ "metadata": {} }, { - "id": "msg_tF6171ztJNEO41neLo6NMrdP", + "id": "msg_nIh4kYVAOBHlQ4cdyKqkrNYW", "object": "thread.message", - "created_at": 1758062808, + "created_at": 1761861887, "assistant_id": null, - "thread_id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", + "thread_id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", "run_id": null, "role": "user", "content": [ @@ -651,61 +582,62 @@ "metadata": {} } ], - "first_id": "msg_QnD0LZfdNkhTDzwJvZiXewmZ", - "last_id": "msg_tF6171ztJNEO41neLo6NMrdP", + "first_id": "msg_nAQqVDv3q8BfSeDyQwNnXVSm", + "last_id": "msg_nIh4kYVAOBHlQ4cdyKqkrNYW", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_cP8vOv2RMtfUV56644Kv8ktQ/runs/run_p1JwB1aC7vUsSboxOUKicbDX/steps?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_qlsEoLJsJH7QqKNlDhFr95qJ/runs/run_KRHP4BKmgPXWM2RCQcMT4iGU/steps?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e71dadb9a354-SEA", + "CF-RAY": "996e360e890808e3-SEA", "Connection": "keep-alive", "Content-Length": "3315", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:57 GMT", + "Date": "Thu, 30 Oct 2025 22:04:58 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "91", + "openai-processing-ms": "2467", "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": "95", + "x-envoy-upstream-service-time": "2727", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "step_808mAwcdmOVbLD2K4xFIwpNs", + "id": "step_6D0DAZPpcdNYGlniZEsrIRHa", "object": "thread.run.step", - "created_at": 1758062814, - "run_id": "run_p1JwB1aC7vUsSboxOUKicbDX", - "assistant_id": "asst_0Gem2dH92Ovn7frnv7gHP588", - "thread_id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", + "created_at": 1761861893, + "run_id": "run_KRHP4BKmgPXWM2RCQcMT4iGU", + "assistant_id": "asst_J253GyRUaZJy0vc9qA6LmDG6", + "thread_id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062815, + "completed_at": 1761861893, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_QnD0LZfdNkhTDzwJvZiXewmZ" + "message_id": "msg_nAQqVDv3q8BfSeDyQwNnXVSm" } }, "usage": { @@ -721,16 +653,16 @@ } }, { - "id": "step_YBUrwwLFySnoTQ2xDKSEk0YY", + "id": "step_TtJQJDYD2T4z6XePbVtWbApt", "object": "thread.run.step", - "created_at": 1758062813, - "run_id": "run_p1JwB1aC7vUsSboxOUKicbDX", - "assistant_id": "asst_0Gem2dH92Ovn7frnv7gHP588", - "thread_id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", + "created_at": 1761861891, + "run_id": "run_KRHP4BKmgPXWM2RCQcMT4iGU", + "assistant_id": "asst_J253GyRUaZJy0vc9qA6LmDG6", + "thread_id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062814, + "completed_at": 1761861893, "expires_at": null, "failed_at": null, "last_error": null, @@ -738,7 +670,7 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_vT8uzB4BUjkZTyKHawUAo1aA", + "id": "call_zoqZTCadrVzVQiJsqWys2u1k", "type": "file_search", "file_search": { "ranking_options": { @@ -747,9 +679,9 @@ }, "results": [ { - "file_id": "file-AKmDMuK6BSFoaFXToEQsXM", + "file_id": "file-KWAWzm51oenkSYgJcReEu1", "file_name": "favorite_foods.txt", - "score": 0.7516133529348871, + "score": 0.7506859036913381, "attributes": {}, "content": [ { @@ -759,9 +691,9 @@ ] }, { - "file_id": "file-AKmDMuK6BSFoaFXToEQsXM", + "file_id": "file-KWAWzm51oenkSYgJcReEu1", "file_name": "favorite_foods.txt", - "score": 0.7516133529348871, + "score": 0.7506859036913381, "attributes": {}, "content": [ { @@ -788,51 +720,52 @@ } } ], - "first_id": "step_808mAwcdmOVbLD2K4xFIwpNs", - "last_id": "step_YBUrwwLFySnoTQ2xDKSEk0YY", + "first_id": "step_6D0DAZPpcdNYGlniZEsrIRHa", + "last_id": "step_TtJQJDYD2T4z6XePbVtWbApt", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_cP8vOv2RMtfUV56644Kv8ktQ/runs/run_p1JwB1aC7vUsSboxOUKicbDX/steps/step_YBUrwwLFySnoTQ2xDKSEk0YY?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_qlsEoLJsJH7QqKNlDhFr95qJ/runs/run_KRHP4BKmgPXWM2RCQcMT4iGU/steps/step_TtJQJDYD2T4z6XePbVtWbApt?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e71eceb9a354-SEA", + "CF-RAY": "996e3620696508e3-SEA", "Connection": "keep-alive", "Content-Length": "1971", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:57 GMT", + "Date": "Thu, 30 Oct 2025 22:04:58 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "60", + "openai-processing-ms": "46", "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": "64", + "x-envoy-upstream-service-time": "49", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "step_YBUrwwLFySnoTQ2xDKSEk0YY", + "id": "step_TtJQJDYD2T4z6XePbVtWbApt", "object": "thread.run.step", - "created_at": 1758062813, - "run_id": "run_p1JwB1aC7vUsSboxOUKicbDX", - "assistant_id": "asst_0Gem2dH92Ovn7frnv7gHP588", - "thread_id": "thread_cP8vOv2RMtfUV56644Kv8ktQ", + "created_at": 1761861891, + "run_id": "run_KRHP4BKmgPXWM2RCQcMT4iGU", + "assistant_id": "asst_J253GyRUaZJy0vc9qA6LmDG6", + "thread_id": "thread_qlsEoLJsJH7QqKNlDhFr95qJ", "type": "tool_calls", "status": "completed", "cancelled_at": null, - "completed_at": 1758062814, + "completed_at": 1761861893, "expires_at": null, "failed_at": null, "last_error": null, @@ -840,7 +773,7 @@ "type": "tool_calls", "tool_calls": [ { - "id": "call_vT8uzB4BUjkZTyKHawUAo1aA", + "id": "call_zoqZTCadrVzVQiJsqWys2u1k", "type": "file_search", "file_search": { "ranking_options": { @@ -849,9 +782,9 @@ }, "results": [ { - "file_id": "file-AKmDMuK6BSFoaFXToEQsXM", + "file_id": "file-KWAWzm51oenkSYgJcReEu1", "file_name": "favorite_foods.txt", - "score": 0.7516133529348871, + "score": 0.7506859036913381, "attributes": {}, "content": [ { @@ -861,9 +794,9 @@ ] }, { - "file_id": "file-AKmDMuK6BSFoaFXToEQsXM", + "file_id": "file-KWAWzm51oenkSYgJcReEu1", "file_name": "favorite_foods.txt", - "score": 0.7516133529348871, + "score": 0.7506859036913381, "attributes": {}, "content": [ { diff --git a/tests/SessionRecords/AssistantsTests/FunctionToolsWork.json b/tests/SessionRecords/AssistantsTests/FunctionToolsWork.json index 112745135..d0c4acbc1 100644 --- a/tests/SessionRecords/AssistantsTests/FunctionToolsWork.json +++ b/tests/SessionRecords/AssistantsTests/FunctionToolsWork.json @@ -6,13 +6,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "335", + "Content-Length": "330", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "tools": [ { "type": "function", @@ -36,28 +36,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e33af8d1a354-SEA", + "CF-RAY": "996e30bfdda808e3-SEA", "Connection": "keep-alive", - "Content-Length": "832", + "Content-Length": "827", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:18 GMT", + "Date": "Thu, 30 Oct 2025 22:01:18 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "265", + "openai-processing-ms": "532", "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": "275", + "x-envoy-upstream-service-time": "554", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", + "id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", "object": "assistant", - "created_at": 1758062657, + "created_at": 1761861678, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -95,10 +96,10 @@ "Content-Length": "131", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", "thread": { "messages": [ { @@ -112,36 +113,37 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e33d5ab6a354-SEA", + "CF-RAY": "996e30c3da5208e3-SEA", "Connection": "keep-alive", - "Content-Length": "1327", + "Content-Length": "1322", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:19 GMT", + "Date": "Thu, 30 Oct 2025 22:01:20 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1011", + "openai-processing-ms": "1616", "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": "1013", + "x-envoy-upstream-service-time": "1634", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "queued", "started_at": null, - "expires_at": 1758063258, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -181,49 +183,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e34a7c48a354-SEA", + "CF-RAY": "996e30d4ebec08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1338", + "Content-Length": "1333", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:20 GMT", + "Date": "Thu, 30 Oct 2025 22:01:21 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "284", + "openai-processing-ms": "162", "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": "300", + "x-envoy-upstream-service-time": "169", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "in_progress", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -263,43 +266,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e3532b6ea354-SEA", + "CF-RAY": "996e30dd3ce608e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:21 GMT", + "Date": "Thu, 30 Oct 2025 22:01:23 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "266", + "openai-processing-ms": "203", "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": "273", + "x-envoy-upstream-service-time": "208", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -308,7 +312,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -319,7 +323,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -359,43 +363,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e35bba92a354-SEA", + "CF-RAY": "996e30e55dbf08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:23 GMT", + "Date": "Thu, 30 Oct 2025 22:01:24 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "166", + "openai-processing-ms": "201", "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": "174", + "x-envoy-upstream-service-time": "209", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -404,7 +409,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -415,7 +420,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -455,43 +460,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e363e95fa354-SEA", + "CF-RAY": "996e30ed8ddd08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:24 GMT", + "Date": "Thu, 30 Oct 2025 22:01:25 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "256", + "openai-processing-ms": "148", "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": "274", + "x-envoy-upstream-service-time": "156", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -500,7 +506,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -511,7 +517,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -551,43 +557,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e36c7825a354-SEA", + "CF-RAY": "996e30f54e9008e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:29 GMT", + "Date": "Thu, 30 Oct 2025 22:01:27 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "3202", + "openai-processing-ms": "293", "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": "3587", + "x-envoy-upstream-service-time": "301", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -596,7 +603,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -607,7 +614,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -647,43 +654,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e389e907a354-SEA", + "CF-RAY": "996e30fe5fa608e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:30 GMT", + "Date": "Thu, 30 Oct 2025 22:01:28 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "268", + "openai-processing-ms": "323", "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": "296", + "x-envoy-upstream-service-time": "331", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -692,7 +700,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -703,7 +711,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -743,43 +751,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e39298c3a354-SEA", + "CF-RAY": "996e3107591108e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:31 GMT", + "Date": "Thu, 30 Oct 2025 22:01:29 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "130", + "openai-processing-ms": "174", "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": "133", + "x-envoy-upstream-service-time": "179", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -788,7 +797,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -799,7 +808,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -839,43 +848,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e39a4ff0a354-SEA", + "CF-RAY": "996e310f58db08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:33 GMT", + "Date": "Thu, 30 Oct 2025 22:01:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "453", + "openai-processing-ms": "183", "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": "498", + "x-envoy-upstream-service-time": "188", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -884,7 +894,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -895,7 +905,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -935,43 +945,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e3a44f37a354-SEA", + "CF-RAY": "996e31177a0e08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:34 GMT", + "Date": "Thu, 30 Oct 2025 22:01:32 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "202", + "openai-processing-ms": "227", "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": "205", + "x-envoy-upstream-service-time": "241", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -980,7 +991,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -991,7 +1002,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1031,43 +1042,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e3ac5d8aa354-SEA", + "CF-RAY": "996e311fdb2b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:36 GMT", + "Date": "Thu, 30 Oct 2025 22:01:33 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "240", + "openai-processing-ms": "160", "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": "277", + "x-envoy-upstream-service-time": "170", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "requires_action", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -1076,7 +1088,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_OlptQjFYtssjXHFXW6XEtywj", + "id": "call_b9LqseCoPpctoIx71RVNZ1nB", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -1087,7 +1099,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1127,7 +1139,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI/submit_tool_outputs", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA/submit_tool_outputs", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -1135,12 +1147,12 @@ "Content-Length": "84", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "tool_outputs": [ { - "tool_call_id": "call_OlptQjFYtssjXHFXW6XEtywj", + "tool_call_id": "call_b9LqseCoPpctoIx71RVNZ1nB", "output": "tacos" } ] @@ -1149,36 +1161,120 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e3aebf20a354-SEA", + "CF-RAY": "996e31218cdb08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1333", + "Content-Length": "1328", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:36 GMT", + "Date": "Thu, 30 Oct 2025 22:01:34 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "613", + "openai-processing-ms": "650", "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": "616", + "x-envoy-upstream-service-time": "654", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "queued", - "started_at": 1758062659, - "expires_at": 1758063258, + "started_at": 1761861680, + "expires_at": 1761862279, + "cancelled_at": null, + "failed_at": null, + "completed_at": null, + "required_action": null, + "last_error": null, + "model": "gpt-4o", + "instructions": null, + "tools": [ + { + "type": "function", + "function": { + "name": "get_favorite_food_for_day_of_week", + "description": "gets the user's favorite food for a given day of the week, like Tuesday", + "parameters": { + "type": "object", + "properties": { + "day_of_week": { + "type": "string", + "description": "a day of the week, like Tuesday or Saturday" + } + } + }, + "strict": false + } + } + ], + "tool_resources": {}, + "metadata": {}, + "temperature": 1.0, + "top_p": 1.0, + "reasoning_effort": null, + "max_completion_tokens": null, + "max_prompt_tokens": null, + "truncation_strategy": { + "type": "auto", + "last_messages": null + }, + "incomplete_details": null, + "usage": null, + "response_format": "auto", + "tool_choice": "auto", + "parallel_tool_calls": true + } + }, + { + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "OpenAI-Beta": "assistants=v2", + "User-Agent": "OpenAI/2.5.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": "996e312c986508e3-SEA", + "Connection": "keep-alive", + "Content-Length": "1333", + "Content-Type": "application/json", + "Date": "Thu, 30 Oct 2025 22:01:35 GMT", + "openai-organization": "Sanitized", + "openai-processing-ms": "154", + "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": "157", + "x-openai-proxy-wasm": "v0.1", + "X-Request-ID": "Sanitized" + }, + "ResponseBody": { + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", + "object": "thread.run", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", + "status": "in_progress", + "started_at": 1761861695, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1218,49 +1314,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e3b95f08a354-SEA", + "CF-RAY": "996e3134799208e3-SEA", "Connection": "keep-alive", - "Content-Length": "1338", + "Content-Length": "1333", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:38 GMT", + "Date": "Thu, 30 Oct 2025 22:01:36 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "242", + "openai-processing-ms": "141", "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": "262", + "x-envoy-upstream-service-time": "144", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "in_progress", - "started_at": 1758062677, - "expires_at": 1758063258, + "started_at": 1761861695, + "expires_at": 1761862279, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1300,49 +1397,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/runs/run_ClHZ1fluoBe2LzrHQe76I9ZI", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/runs/run_VSZ30Gv0cSXNu4f67kzJ8NyA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e3c1dd73a354-SEA", + "CF-RAY": "996e313c390e08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1548", + "Content-Length": "1543", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:39 GMT", + "Date": "Thu, 30 Oct 2025 22:01:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "446", + "openai-processing-ms": "167", "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": "459", + "x-envoy-upstream-service-time": "171", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "object": "thread.run", - "created_at": 1758062658, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "created_at": 1761861679, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "status": "completed", - "started_at": 1758062677, + "started_at": 1761861695, "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": 1758062678, + "completed_at": 1761861696, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1392,50 +1490,51 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_mZtvUWUktMdpRCUxrfHjFID5/messages?order=desc", + "RequestUri": "https://api.openai.com/v1/threads/thread_iPTdbXGcxD5XNzfCaYWFJylc/messages?order=desc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e3c5582da354-SEA", + "CF-RAY": "996e313dcab008e3-SEA", "Connection": "keep-alive", - "Content-Length": "1190", + "Content-Length": "1188", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:40 GMT", + "Date": "Thu, 30 Oct 2025 22:01:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "56", + "openai-processing-ms": "469", "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": "60", + "x-envoy-upstream-service-time": "474", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_Y2dOYSgejpdZLrzftY00gf8F", + "id": "msg_yteWSOVj6MVUcGowxpuQ9eur", "object": "thread.message", - "created_at": 1758062677, - "assistant_id": "asst_zhDanx9J7FEU6uldl1vPUjtZ", - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", - "run_id": "run_ClHZ1fluoBe2LzrHQe76I9ZI", + "created_at": 1761861696, + "assistant_id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", + "run_id": "run_VSZ30Gv0cSXNu4f67kzJ8NyA", "role": "assistant", "content": [ { "type": "text", "text": { - "value": "You should eat tacos on Thursday! Enjoy!", + "value": "You should eat tacos on Thursday! \uD83C\uDF2E", "annotations": [] } } @@ -1444,11 +1543,11 @@ "metadata": {} }, { - "id": "msg_ZBHZVfBdlrFbBACqePOYjKuQ", + "id": "msg_AYPSKBx86JeEfRInBNAvsLDg", "object": "thread.message", - "created_at": 1758062658, + "created_at": 1761861679, "assistant_id": null, - "thread_id": "thread_mZtvUWUktMdpRCUxrfHjFID5", + "thread_id": "thread_iPTdbXGcxD5XNzfCaYWFJylc", "run_id": null, "role": "user", "content": [ @@ -1464,8 +1563,8 @@ "metadata": {} } ], - "first_id": "msg_Y2dOYSgejpdZLrzftY00gf8F", - "last_id": "msg_ZBHZVfBdlrFbBACqePOYjKuQ", + "first_id": "msg_yteWSOVj6MVUcGowxpuQ9eur", + "last_id": "msg_AYPSKBx86JeEfRInBNAvsLDg", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/FunctionToolsWorkAsync.json b/tests/SessionRecords/AssistantsTests/FunctionToolsWorkAsync.json index f1311ab53..f4918f7b3 100644 --- a/tests/SessionRecords/AssistantsTests/FunctionToolsWorkAsync.json +++ b/tests/SessionRecords/AssistantsTests/FunctionToolsWorkAsync.json @@ -6,13 +6,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "335", + "Content-Length": "330", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "tools": [ { "type": "function", @@ -36,28 +36,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e7204806a354-SEA", + "CF-RAY": "996e3621ba7b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "832", + "Content-Length": "827", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:57 GMT", + "Date": "Thu, 30 Oct 2025 22:04:58 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "293", + "openai-processing-ms": "298", "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": "321", + "x-envoy-upstream-service-time": "302", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_nayJJwWQv659dQdMwyB7pQf6", + "id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", "object": "assistant", - "created_at": 1758062817, + "created_at": 1761861898, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -95,10 +96,10 @@ "Content-Length": "131", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", "thread": { "messages": [ { @@ -112,36 +113,37 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e722ea09a354-SEA", + "CF-RAY": "996e36242d0d08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1327", + "Content-Length": "1322", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:46:58 GMT", + "Date": "Thu, 30 Oct 2025 22:05:01 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "894", + "openai-processing-ms": "2072", "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": "899", + "x-envoy-upstream-service-time": "2099", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "queued", "started_at": null, - "expires_at": 1758063418, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -181,49 +183,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e72f3c29a354-SEA", + "CF-RAY": "996e3638390408e3-SEA", "Connection": "keep-alive", - "Content-Length": "1338", + "Content-Length": "1333", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:00 GMT", + "Date": "Thu, 30 Oct 2025 22:05:02 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "525", + "openai-processing-ms": "394", "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": "537", + "x-envoy-upstream-service-time": "399", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "in_progress", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -263,63 +266,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7396ce3a354-SEA", + "CF-RAY": "996e36418a2908e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1333", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:01 GMT", + "Date": "Thu, 30 Oct 2025 22:05:03 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "161", + "openai-processing-ms": "186", "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": "164", + "x-envoy-upstream-service-time": "189", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", - "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", + "status": "in_progress", + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, - "required_action": { - "type": "submit_tool_outputs", - "submit_tool_outputs": { - "tool_calls": [ - { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", - "type": "function", - "function": { - "name": "get_favorite_food_for_day_of_week", - "arguments": "{\"day_of_week\":\"Thursday\"}" - } - } - ] - } - }, + "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -359,43 +349,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7414a91a354-SEA", + "CF-RAY": "996e364999a708e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:02 GMT", + "Date": "Thu, 30 Oct 2025 22:05:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "251", + "openai-processing-ms": "329", "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": "265", + "x-envoy-upstream-service-time": "370", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -404,7 +395,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -415,7 +406,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -455,43 +446,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e749e89da354-SEA", + "CF-RAY": "996e3652b98708e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:04 GMT", + "Date": "Thu, 30 Oct 2025 22:05:06 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "181", + "openai-processing-ms": "190", "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": "184", + "x-envoy-upstream-service-time": "194", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -500,7 +492,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -511,7 +503,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -551,43 +543,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7520fbaa354-SEA", + "CF-RAY": "996e365ae81008e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:05 GMT", + "Date": "Thu, 30 Oct 2025 22:05:07 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "164", + "openai-processing-ms": "149", "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": "167", + "x-envoy-upstream-service-time": "153", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -596,7 +589,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -607,7 +600,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -647,43 +640,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e75a0fa4a354-SEA", + "CF-RAY": "996e3662aed408e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:06 GMT", + "Date": "Thu, 30 Oct 2025 22:05:09 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "288", + "openai-processing-ms": "167", "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": "303", + "x-envoy-upstream-service-time": "170", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -692,7 +686,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -703,7 +697,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -743,43 +737,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e762be99a354-SEA", + "CF-RAY": "996e366a8e7808e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:08 GMT", + "Date": "Thu, 30 Oct 2025 22:05:10 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "147", + "openai-processing-ms": "149", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150", + "x-envoy-upstream-service-time": "153", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -788,7 +783,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -799,7 +794,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -839,43 +834,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e76a8caaa354-SEA", + "CF-RAY": "996e36724d4608e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:09 GMT", + "Date": "Thu, 30 Oct 2025 22:05:11 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "237", + "openai-processing-ms": "176", "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": "257", + "x-envoy-upstream-service-time": "185", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -884,7 +880,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -895,7 +891,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -935,43 +931,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e772eb4fa354-SEA", + "CF-RAY": "996e367a4e9308e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:10 GMT", + "Date": "Thu, 30 Oct 2025 22:05:14 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "171", + "openai-processing-ms": "1368", "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": "174", + "x-envoy-upstream-service-time": "1511", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -980,7 +977,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -991,7 +988,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1031,43 +1028,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e77aeaf1a354-SEA", + "CF-RAY": "996e368aad2708e3-SEA", "Connection": "keep-alive", - "Content-Length": "1693", + "Content-Length": "1688", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:12 GMT", + "Date": "Thu, 30 Oct 2025 22:05:15 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "824", + "openai-processing-ms": "258", "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": "898", + "x-envoy-upstream-service-time": "267", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "requires_action", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -1076,7 +1074,7 @@ "submit_tool_outputs": { "tool_calls": [ { - "id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "type": "function", "function": { "name": "get_favorite_food_for_day_of_week", @@ -1087,7 +1085,7 @@ } }, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1127,7 +1125,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9/submit_tool_outputs", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL/submit_tool_outputs", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -1135,12 +1133,12 @@ "Content-Length": "84", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "tool_outputs": [ { - "tool_call_id": "call_M8Catnk0rQwfFXc2yCJERTkY", + "tool_call_id": "call_23Wf4kXyCtVZdF1doZRzDjS4", "output": "tacos" } ] @@ -1149,36 +1147,37 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e781381fa354-SEA", + "CF-RAY": "996e368cef9108e3-SEA", "Connection": "keep-alive", - "Content-Length": "1333", + "Content-Length": "1328", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:13 GMT", + "Date": "Thu, 30 Oct 2025 22:05:16 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "608", + "openai-processing-ms": "673", "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": "612", + "x-envoy-upstream-service-time": "677", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "queued", - "started_at": 1758062819, - "expires_at": 1758063418, + "started_at": 1761861901, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1218,49 +1217,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e78bd8e3a354-SEA", + "CF-RAY": "996e3697fa6f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1338", + "Content-Length": "1333", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:15 GMT", + "Date": "Thu, 30 Oct 2025 22:05:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "449", + "openai-processing-ms": "205", "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": "493", + "x-envoy-upstream-service-time": "208", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "in_progress", - "started_at": 1758062834, - "expires_at": 1758063418, + "started_at": 1761861916, + "expires_at": 1761862500, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1300,49 +1300,50 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/runs/run_hmtJlZgy7nVpLlwSCoCgtvR9", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/runs/run_SQHx3Z6TDUBXWlOChOJ76TJL", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e79609e5a354-SEA", + "CF-RAY": "996e36a02ab008e3-SEA", "Connection": "keep-alive", - "Content-Length": "1548", + "Content-Length": "1543", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:16 GMT", + "Date": "Thu, 30 Oct 2025 22:05:19 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "171", + "openai-processing-ms": "374", "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": "174", + "x-envoy-upstream-service-time": "394", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "object": "thread.run", - "created_at": 1758062818, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "created_at": 1761861900, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "status": "completed", - "started_at": 1758062834, + "started_at": 1761861916, "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": 1758062835, + "completed_at": 1761861917, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -1377,8 +1378,8 @@ "incomplete_details": null, "usage": { "prompt_tokens": 627, - "completion_tokens": 36, - "total_tokens": 663, + "completion_tokens": 35, + "total_tokens": 662, "prompt_token_details": { "cached_tokens": 0 }, @@ -1392,50 +1393,51 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_L6SyTm2PQVJLxTrvOjC5h5CS/messages?order=desc", + "RequestUri": "https://api.openai.com/v1/threads/thread_gkKX1IBZbPQjL4hFRsW92Jlx/messages?order=desc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e797ab22a354-SEA", + "CF-RAY": "996e36a32d9f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "1195", + "Content-Length": "1189", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:16 GMT", + "Date": "Thu, 30 Oct 2025 22:05:19 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "48", + "openai-processing-ms": "69", "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": "52", + "x-envoy-upstream-service-time": "72", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_Sni8cRHWIkUSU6ryODN1JJ5R", + "id": "msg_3CJJmsCym7jURqSQGMQ4GtD8", "object": "thread.message", - "created_at": 1758062834, - "assistant_id": "asst_nayJJwWQv659dQdMwyB7pQf6", - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", - "run_id": "run_hmtJlZgy7nVpLlwSCoCgtvR9", + "created_at": 1761861917, + "assistant_id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", + "run_id": "run_SQHx3Z6TDUBXWlOChOJ76TJL", "role": "assistant", "content": [ { "type": "text", "text": { - "value": "You should eat tacos on Thursday! Enjoy! \uD83C\uDF2E", + "value": "On Thursday, you should eat tacos! \uD83C\uDF2E", "annotations": [] } } @@ -1444,11 +1446,11 @@ "metadata": {} }, { - "id": "msg_fqUFl2fvt71cBQ12ANJ6h5Ij", + "id": "msg_XyerYeIquaoDBbR2kJPjGCXV", "object": "thread.message", - "created_at": 1758062818, + "created_at": 1761861899, "assistant_id": null, - "thread_id": "thread_L6SyTm2PQVJLxTrvOjC5h5CS", + "thread_id": "thread_gkKX1IBZbPQjL4hFRsW92Jlx", "run_id": null, "role": "user", "content": [ @@ -1464,8 +1466,8 @@ "metadata": {} } ], - "first_id": "msg_Sni8cRHWIkUSU6ryODN1JJ5R", - "last_id": "msg_fqUFl2fvt71cBQ12ANJ6h5Ij", + "first_id": "msg_3CJJmsCym7jURqSQGMQ4GtD8", + "last_id": "msg_XyerYeIquaoDBbR2kJPjGCXV", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/MessagesWithRoles.json b/tests/SessionRecords/AssistantsTests/MessagesWithRoles.json index be6960ecf..02dc2c062 100644 --- a/tests/SessionRecords/AssistantsTests/MessagesWithRoles.json +++ b/tests/SessionRecords/AssistantsTests/MessagesWithRoles.json @@ -9,7 +9,7 @@ "Content-Length": "109", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -27,67 +27,69 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdb11983a334-SEA", + "CF-RAY": "996e3141be8208e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:35 GMT", + "Date": "Thu, 30 Oct 2025 22:01:39 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "366", + "openai-processing-ms": "489", "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": "375", + "x-envoy-upstream-service-time": "493", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "object": "thread", - "created_at": 1758061775, + "created_at": 1761861698, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_nqQVmfbkSyeWwu3ayJWSdYpc/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_NUrWJ6JJC35TsXsYa7jm7JgC/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803cdb3fbb3a334-SEA", + "CF-RAY": "996e31456a0e08e3-SEA", "Connection": "keep-alive", "Content-Length": "1099", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:36 GMT", + "Date": "Thu, 30 Oct 2025 22:01:39 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "51", + "openai-processing-ms": "80", "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": "54", + "x-envoy-upstream-service-time": "83", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_VlHmfbETYqsQJ3Ny4kmtt416", + "id": "msg_vnQQl1uKK4Amv0VE3BPq9PDo", "object": "thread.message", - "created_at": 1758061775, + "created_at": 1761861699, "assistant_id": null, - "thread_id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "thread_id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "run_id": null, "role": "assistant", "content": [ @@ -103,11 +105,11 @@ "metadata": {} }, { - "id": "msg_Y6L8mWeQASFpzZcHhr5iDHro", + "id": "msg_7rpHDbdlDsIsKw7ozRuHiKA4", "object": "thread.message", - "created_at": 1758061775, + "created_at": 1761861699, "assistant_id": null, - "thread_id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "thread_id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "run_id": null, "role": "user", "content": [ @@ -123,13 +125,13 @@ "metadata": {} } ], - "first_id": "msg_VlHmfbETYqsQJ3Ny4kmtt416", - "last_id": "msg_Y6L8mWeQASFpzZcHhr5iDHro", + "first_id": "msg_vnQQl1uKK4Amv0VE3BPq9PDo", + "last_id": "msg_7rpHDbdlDsIsKw7ozRuHiKA4", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_nqQVmfbkSyeWwu3ayJWSdYpc/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_NUrWJ6JJC35TsXsYa7jm7JgC/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -137,7 +139,7 @@ "Content-Length": "45", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -147,27 +149,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdb4dc62a334-SEA", + "CF-RAY": "996e31468b1708e3-SEA", "Connection": "keep-alive", "Content-Length": "391", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:36 GMT", + "Date": "Thu, 30 Oct 2025 22:01:39 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "185", + "openai-processing-ms": "181", "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": "189", + "x-envoy-upstream-service-time": "184", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_AXIXneOyceocw6gnYcc1cPoa", + "id": "msg_CYeiNSEWNkvpyfZq4bfWDqYC", "object": "thread.message", - "created_at": 1758061776, + "created_at": 1761861699, "assistant_id": null, - "thread_id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "thread_id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "run_id": null, "role": "user", "content": [ @@ -184,7 +187,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_nqQVmfbkSyeWwu3ayJWSdYpc/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_NUrWJ6JJC35TsXsYa7jm7JgC/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -192,7 +195,7 @@ "Content-Length": "48", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "assistant", @@ -202,27 +205,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdb68db1a334-SEA", + "CF-RAY": "996e31482ca208e3-SEA", "Connection": "keep-alive", "Content-Length": "394", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:36 GMT", + "Date": "Thu, 30 Oct 2025 22:01:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "150", + "openai-processing-ms": "229", "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": "153", + "x-envoy-upstream-service-time": "233", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_YglHACiKA6uvpILSp6oyVRpZ", + "id": "msg_6uzmdzEgNTIC8abtmrzYW1Q9", "object": "thread.message", - "created_at": 1758061776, + "created_at": 1761861700, "assistant_id": null, - "thread_id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "thread_id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "run_id": null, "role": "assistant", "content": [ @@ -239,43 +243,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_nqQVmfbkSyeWwu3ayJWSdYpc/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_NUrWJ6JJC35TsXsYa7jm7JgC/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803cdb80efca334-SEA", + "CF-RAY": "996e314a5f0308e3-SEA", "Connection": "keep-alive", "Content-Length": "2048", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:36 GMT", + "Date": "Thu, 30 Oct 2025 22:01:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "189", + "openai-processing-ms": "50", "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": "202", + "x-envoy-upstream-service-time": "58", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_YglHACiKA6uvpILSp6oyVRpZ", + "id": "msg_6uzmdzEgNTIC8abtmrzYW1Q9", "object": "thread.message", - "created_at": 1758061776, + "created_at": 1761861700, "assistant_id": null, - "thread_id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "thread_id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "run_id": null, "role": "assistant", "content": [ @@ -291,11 +296,11 @@ "metadata": {} }, { - "id": "msg_AXIXneOyceocw6gnYcc1cPoa", + "id": "msg_CYeiNSEWNkvpyfZq4bfWDqYC", "object": "thread.message", - "created_at": 1758061776, + "created_at": 1761861699, "assistant_id": null, - "thread_id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "thread_id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "run_id": null, "role": "user", "content": [ @@ -311,11 +316,11 @@ "metadata": {} }, { - "id": "msg_VlHmfbETYqsQJ3Ny4kmtt416", + "id": "msg_vnQQl1uKK4Amv0VE3BPq9PDo", "object": "thread.message", - "created_at": 1758061775, + "created_at": 1761861699, "assistant_id": null, - "thread_id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "thread_id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "run_id": null, "role": "assistant", "content": [ @@ -331,11 +336,11 @@ "metadata": {} }, { - "id": "msg_Y6L8mWeQASFpzZcHhr5iDHro", + "id": "msg_7rpHDbdlDsIsKw7ozRuHiKA4", "object": "thread.message", - "created_at": 1758061775, + "created_at": 1761861699, "assistant_id": null, - "thread_id": "thread_nqQVmfbkSyeWwu3ayJWSdYpc", + "thread_id": "thread_NUrWJ6JJC35TsXsYa7jm7JgC", "run_id": null, "role": "user", "content": [ @@ -351,8 +356,8 @@ "metadata": {} } ], - "first_id": "msg_YglHACiKA6uvpILSp6oyVRpZ", - "last_id": "msg_Y6L8mWeQASFpzZcHhr5iDHro", + "first_id": "msg_6uzmdzEgNTIC8abtmrzYW1Q9", + "last_id": "msg_7rpHDbdlDsIsKw7ozRuHiKA4", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/MessagesWithRolesAsync.json b/tests/SessionRecords/AssistantsTests/MessagesWithRolesAsync.json index 8dce626e5..d9cf66888 100644 --- a/tests/SessionRecords/AssistantsTests/MessagesWithRolesAsync.json +++ b/tests/SessionRecords/AssistantsTests/MessagesWithRolesAsync.json @@ -9,7 +9,7 @@ "Content-Length": "109", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -27,67 +27,69 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4577ae3a334-SEA", + "CF-RAY": "996e36a4bf3a08e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:08 GMT", + "Date": "Thu, 30 Oct 2025 22:05:20 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "308", + "openai-processing-ms": "500", "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": "311", + "x-envoy-upstream-service-time": "506", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "object": "thread", - "created_at": 1758062047, + "created_at": 1761861919, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Ywca4dqONt0NLjSYaVaA9Mjj/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_ZawzhRLQ5Aewo0eyWLBLFtsc/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d459fd2da334-SEA", + "CF-RAY": "996e36a86acb08e3-SEA", "Connection": "keep-alive", "Content-Length": "1099", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:08 GMT", + "Date": "Thu, 30 Oct 2025 22:05:20 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "49", + "openai-processing-ms": "196", "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": "52", + "x-envoy-upstream-service-time": "231", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_iatXwwXPva8MuiiKmtlrFghg", + "id": "msg_AZuR268lEte3CKcArT3A1lRc", "object": "thread.message", - "created_at": 1758062048, + "created_at": 1761861919, "assistant_id": null, - "thread_id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "thread_id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "run_id": null, "role": "assistant", "content": [ @@ -103,11 +105,11 @@ "metadata": {} }, { - "id": "msg_7NFcvDFyZ6RW0zyXHl2besWk", + "id": "msg_LNJFiTS2mM4L6hdUs2QWkvTI", "object": "thread.message", - "created_at": 1758062048, + "created_at": 1761861919, "assistant_id": null, - "thread_id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "thread_id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "run_id": null, "role": "user", "content": [ @@ -123,13 +125,13 @@ "metadata": {} } ], - "first_id": "msg_iatXwwXPva8MuiiKmtlrFghg", - "last_id": "msg_7NFcvDFyZ6RW0zyXHl2besWk", + "first_id": "msg_AZuR268lEte3CKcArT3A1lRc", + "last_id": "msg_LNJFiTS2mM4L6hdUs2QWkvTI", "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Ywca4dqONt0NLjSYaVaA9Mjj/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_ZawzhRLQ5Aewo0eyWLBLFtsc/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -137,7 +139,7 @@ "Content-Length": "45", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -147,27 +149,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d45aee29a334-SEA", + "CF-RAY": "996e36aa6c8f08e3-SEA", "Connection": "keep-alive", "Content-Length": "391", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:08 GMT", + "Date": "Thu, 30 Oct 2025 22:05:20 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "154", + "openai-processing-ms": "199", "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": "158", + "x-envoy-upstream-service-time": "205", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_qWfOYqrWkeU781TTr7y7ff67", + "id": "msg_SLudbpyu5d8Jp1La7ufVwcDJ", "object": "thread.message", - "created_at": 1758062048, + "created_at": 1761861920, "assistant_id": null, - "thread_id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "thread_id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "run_id": null, "role": "user", "content": [ @@ -184,7 +187,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Ywca4dqONt0NLjSYaVaA9Mjj/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_ZawzhRLQ5Aewo0eyWLBLFtsc/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -192,7 +195,7 @@ "Content-Length": "48", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "assistant", @@ -202,27 +205,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d45d18c1a334-SEA", + "CF-RAY": "996e36ac4e5508e3-SEA", "Connection": "keep-alive", "Content-Length": "394", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:09 GMT", + "Date": "Thu, 30 Oct 2025 22:05:21 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "196", + "openai-processing-ms": "249", "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": "199", + "x-envoy-upstream-service-time": "256", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_ElQkR7s9oiMpdnbVyf8VXI4n", + "id": "msg_JZdVyJfDN3eMwHT9FbTudiCS", "object": "thread.message", - "created_at": 1758062048, + "created_at": 1761861920, "assistant_id": null, - "thread_id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "thread_id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "run_id": null, "role": "assistant", "content": [ @@ -239,43 +243,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Ywca4dqONt0NLjSYaVaA9Mjj/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_ZawzhRLQ5Aewo0eyWLBLFtsc/messages", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d45eda68a334-SEA", + "CF-RAY": "996e36ae583708e3-SEA", "Connection": "keep-alive", "Content-Length": "2048", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:09 GMT", + "Date": "Thu, 30 Oct 2025 22:05:21 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "74", + "openai-processing-ms": "70", "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": "84", + "x-envoy-upstream-service-time": "78", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_ElQkR7s9oiMpdnbVyf8VXI4n", + "id": "msg_JZdVyJfDN3eMwHT9FbTudiCS", "object": "thread.message", - "created_at": 1758062048, + "created_at": 1761861920, "assistant_id": null, - "thread_id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "thread_id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "run_id": null, "role": "assistant", "content": [ @@ -291,11 +296,11 @@ "metadata": {} }, { - "id": "msg_qWfOYqrWkeU781TTr7y7ff67", + "id": "msg_SLudbpyu5d8Jp1La7ufVwcDJ", "object": "thread.message", - "created_at": 1758062048, + "created_at": 1761861920, "assistant_id": null, - "thread_id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "thread_id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "run_id": null, "role": "user", "content": [ @@ -311,11 +316,11 @@ "metadata": {} }, { - "id": "msg_iatXwwXPva8MuiiKmtlrFghg", + "id": "msg_AZuR268lEte3CKcArT3A1lRc", "object": "thread.message", - "created_at": 1758062048, + "created_at": 1761861919, "assistant_id": null, - "thread_id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "thread_id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "run_id": null, "role": "assistant", "content": [ @@ -331,11 +336,11 @@ "metadata": {} }, { - "id": "msg_7NFcvDFyZ6RW0zyXHl2besWk", + "id": "msg_LNJFiTS2mM4L6hdUs2QWkvTI", "object": "thread.message", - "created_at": 1758062048, + "created_at": 1761861919, "assistant_id": null, - "thread_id": "thread_Ywca4dqONt0NLjSYaVaA9Mjj", + "thread_id": "thread_ZawzhRLQ5Aewo0eyWLBLFtsc", "run_id": null, "role": "user", "content": [ @@ -351,8 +356,8 @@ "metadata": {} } ], - "first_id": "msg_ElQkR7s9oiMpdnbVyf8VXI4n", - "last_id": "msg_7NFcvDFyZ6RW0zyXHl2besWk", + "first_id": "msg_JZdVyJfDN3eMwHT9FbTudiCS", + "last_id": "msg_LNJFiTS2mM4L6hdUs2QWkvTI", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanEnumerateAssistantsAsync.json b/tests/SessionRecords/AssistantsTests/Pagination_CanEnumerateAssistantsAsync.json index 08383c139..886a49eb1 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanEnumerateAssistantsAsync.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanEnumerateAssistantsAsync.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 0" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdba38d5a334-SEA", + "CF-RAY": "996e314b784908e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:37 GMT", + "Date": "Thu, 30 Oct 2025 22:01:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "529", + "openai-processing-ms": "369", "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": "548", + "x-envoy-upstream-service-time": "375", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_Ugm4Eg5bLcwd8w6EUZWG8bGz", + "id": "asst_yCoSnEzaa09F66lxv1Oh20Be", "object": "assistant", - "created_at": 1758061777, + "created_at": 1761861700, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -57,41 +58,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 1" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdbe7c50a334-SEA", + "CF-RAY": "996e314e6bd008e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:38 GMT", + "Date": "Thu, 30 Oct 2025 22:01:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "480", + "openai-processing-ms": "355", "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": "504", + "x-envoy-upstream-service-time": "359", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_rPm0ghgyyyWryqXGbzN1pQ5Q", + "id": "asst_AE2cT4Wb1dttS1LyEApybtDb", "object": "assistant", - "created_at": 1758061778, + "created_at": 1761861701, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -108,41 +110,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 2" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdc21f76a334-SEA", + "CF-RAY": "996e31513eea08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:38 GMT", + "Date": "Thu, 30 Oct 2025 22:01:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "509", + "openai-processing-ms": "204", "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": "539", + "x-envoy-upstream-service-time": "208", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_2nNiMjXsoGPJKwKtIlUxz49h", + "id": "asst_55nruxnHCsbZINHlNMtYnUKh", "object": "assistant", - "created_at": 1758061778, + "created_at": 1761861701, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -159,41 +162,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 3" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdc61ab3a334-SEA", + "CF-RAY": "996e315318f608e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:39 GMT", + "Date": "Thu, 30 Oct 2025 22:01:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "330", + "openai-processing-ms": "189", "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": "336", + "x-envoy-upstream-service-time": "192", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_F4noXtlHwvRaMBDd6VN4Bggm", + "id": "asst_mHvwCwyqBKwhHwCOGmeuFHFU", "object": "assistant", - "created_at": 1758061779, + "created_at": 1761861701, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -210,41 +214,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 4" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdc8bd0ea334-SEA", + "CF-RAY": "996e3154cb1a08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:39 GMT", + "Date": "Thu, 30 Oct 2025 22:01:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "179", + "openai-processing-ms": "332", "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": "182", + "x-envoy-upstream-service-time": "343", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_ncy0abJmVmTu90aRFkU8KtZe", + "id": "asst_Hr5Un7Ye4YipLvDhazdrzEuO", "object": "assistant", - "created_at": 1758061779, + "created_at": 1761861702, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -261,41 +266,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 5" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdca6e3ba334-SEA", + "CF-RAY": "996e31577df108e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:39 GMT", + "Date": "Thu, 30 Oct 2025 22:01:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "309", + "openai-processing-ms": "424", "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": "320", + "x-envoy-upstream-service-time": "443", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_1oMmyvRHqkufeTugb11ItArg", + "id": "asst_7rZ9a0VZDcOWdTaOLjygCmNT", "object": "assistant", - "created_at": 1758061779, + "created_at": 1761861702, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -312,41 +318,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 6" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdcce803a334-SEA", + "CF-RAY": "996e315af9dd08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:40 GMT", + "Date": "Thu, 30 Oct 2025 22:01:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "238", + "openai-processing-ms": "213", "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": "245", + "x-envoy-upstream-service-time": "217", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_ca0yyRwDWiq39hu7SCh1sDxw", + "id": "asst_5OaYfHois5EezBe7lH95vbjW", "object": "assistant", - "created_at": 1758061780, + "created_at": 1761861703, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -363,41 +370,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 7" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdcee97da334-SEA", + "CF-RAY": "996e315cebbc08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:40 GMT", + "Date": "Thu, 30 Oct 2025 22:01:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "190", + "openai-processing-ms": "314", "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": "194", + "x-envoy-upstream-service-time": "317", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_Mj5qTfqDoadZoOYo4u19zWYX", + "id": "asst_5wn4iW8QDkLSZ5QLlneI8Msk", "object": "assistant", - "created_at": 1758061780, + "created_at": 1761861703, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -414,41 +422,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 8" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdd0aac4a334-SEA", + "CF-RAY": "996e315f6e8a08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:41 GMT", + "Date": "Thu, 30 Oct 2025 22:01:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "438", + "openai-processing-ms": "494", "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": "1202", + "x-envoy-upstream-service-time": "524", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_cg0FKefre2YRQwAQ1vMhowqr", + "id": "asst_BQhjCcCoGJ3c3Ef7VtUi0e7k", "object": "assistant", - "created_at": 1758061781, + "created_at": 1761861704, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -465,41 +474,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 9" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdd8b99ea334-SEA", + "CF-RAY": "996e31634ba408e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:43 GMT", + "Date": "Thu, 30 Oct 2025 22:01:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1041", + "openai-processing-ms": "445", "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": "1084", + "x-envoy-upstream-service-time": "449", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_giAAVlVa61Xbv1roKbZ7RkqV", + "id": "asst_2SzJEYSaWBbPPDDIDdxfawI8", "object": "assistant", - "created_at": 1758061782, + "created_at": 1761861704, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -517,38 +527,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803cde00f7ea334-SEA", + "CF-RAY": "996e3166af2a08e3-SEA", "Connection": "keep-alive", - "Content-Length": "10612", + "Content-Length": "11056", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:44 GMT", + "Date": "Thu, 30 Oct 2025 22:01:45 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1007", + "openai-processing-ms": "1068", "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": "1014", + "x-envoy-upstream-service-time": "1074", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_giAAVlVa61Xbv1roKbZ7RkqV", + "id": "asst_2SzJEYSaWBbPPDDIDdxfawI8", "object": "assistant", - "created_at": 1758061782, + "created_at": 1761861704, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -559,12 +570,12 @@ "response_format": "auto" }, { - "id": "asst_cg0FKefre2YRQwAQ1vMhowqr", + "id": "asst_BQhjCcCoGJ3c3Ef7VtUi0e7k", "object": "assistant", - "created_at": 1758061781, + "created_at": 1761861704, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -575,12 +586,12 @@ "response_format": "auto" }, { - "id": "asst_Mj5qTfqDoadZoOYo4u19zWYX", + "id": "asst_5wn4iW8QDkLSZ5QLlneI8Msk", "object": "assistant", - "created_at": 1758061780, + "created_at": 1761861703, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -591,12 +602,12 @@ "response_format": "auto" }, { - "id": "asst_ca0yyRwDWiq39hu7SCh1sDxw", + "id": "asst_5OaYfHois5EezBe7lH95vbjW", "object": "assistant", - "created_at": 1758061780, + "created_at": 1761861703, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -607,12 +618,12 @@ "response_format": "auto" }, { - "id": "asst_1oMmyvRHqkufeTugb11ItArg", + "id": "asst_7rZ9a0VZDcOWdTaOLjygCmNT", "object": "assistant", - "created_at": 1758061779, + "created_at": 1761861702, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -623,12 +634,12 @@ "response_format": "auto" }, { - "id": "asst_ncy0abJmVmTu90aRFkU8KtZe", + "id": "asst_Hr5Un7Ye4YipLvDhazdrzEuO", "object": "assistant", - "created_at": 1758061779, + "created_at": 1761861702, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -639,12 +650,12 @@ "response_format": "auto" }, { - "id": "asst_F4noXtlHwvRaMBDd6VN4Bggm", + "id": "asst_mHvwCwyqBKwhHwCOGmeuFHFU", "object": "assistant", - "created_at": 1758061779, + "created_at": 1761861701, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -655,12 +666,12 @@ "response_format": "auto" }, { - "id": "asst_2nNiMjXsoGPJKwKtIlUxz49h", + "id": "asst_55nruxnHCsbZINHlNMtYnUKh", "object": "assistant", - "created_at": 1758061778, + "created_at": 1761861701, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -671,12 +682,12 @@ "response_format": "auto" }, { - "id": "asst_rPm0ghgyyyWryqXGbzN1pQ5Q", + "id": "asst_AE2cT4Wb1dttS1LyEApybtDb", "object": "assistant", - "created_at": 1758061778, + "created_at": 1761861701, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -687,12 +698,12 @@ "response_format": "auto" }, { - "id": "asst_Ugm4Eg5bLcwd8w6EUZWG8bGz", + "id": "asst_yCoSnEzaa09F66lxv1Oh20Be", "object": "assistant", - "created_at": 1758061777, + "created_at": 1761861700, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -703,12 +714,12 @@ "response_format": "auto" }, { - "id": "asst_kvV7ZAAuUCfWqYjVVORzRTNn", + "id": "asst_LtiaO4m2KzcEDhNxZLOWffZY", "object": "assistant", - "created_at": 1758061754, + "created_at": 1761861678, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -737,12 +748,12 @@ "response_format": "auto" }, { - "id": "asst_CEs5ssjuWTVna1h9wFZXZJWE", + "id": "asst_tTOTTKEJcjUILn1BDZTAwuwY", "object": "assistant", - "created_at": 1758061745, + "created_at": 1761861667, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -763,7 +774,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e4b1b8ec81918330212eaada49ba" + "vs_6903e02342e08191bd5cee0d90722014" ] } }, @@ -771,12 +782,12 @@ "response_format": "auto" }, { - "id": "asst_D3c0dDz2UXQEA1nkuRJ51meN", + "id": "asst_wsbI8mQzYyBDEhJH7F4Eg3tx", "object": "assistant", - "created_at": 1758061736, + "created_at": 1761861631, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -796,7 +807,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e4a8f75c8191859ddec51d5b3997" + "vs_6903dfff8e488191b32b0612f43a82e5" ] } }, @@ -804,12 +815,12 @@ "response_format": "auto" }, { - "id": "asst_J3KVS2zBATxgd7kyjcCKhHjE", + "id": "asst_0s6U9WqQrHOr3C1PRnAcQuwo", "object": "assistant", - "created_at": 1758061653, + "created_at": 1761861555, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -828,12 +839,12 @@ "response_format": "auto" }, { - "id": "asst_zJE0t3c0L56E5ieEwJItn8eL", + "id": "asst_UOVdTzRv5b3PPpxmEyIYMy9H", "object": "assistant", - "created_at": 1758061647, + "created_at": 1761861547, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -844,12 +855,12 @@ "response_format": "auto" }, { - "id": "asst_GcOQbWNpdlX6hpuNjPeCH5bv", + "id": "asst_nhxgDqo6qGQapC8t5lPpo7kB", "object": "assistant", - "created_at": 1758061641, + "created_at": 1761861541, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -862,12 +873,12 @@ "response_format": "auto" }, { - "id": "asst_nI7dfdsVjTiLR2j0rVC6szM8", + "id": "asst_BFMmpHsel3a7MuFuKKY9i5uG", "object": "assistant", - "created_at": 1758061628, + "created_at": 1761861530, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -891,66 +902,89 @@ "response_format": "auto" }, { - "id": "asst_SfPyHp1sqcjZ6tJ1xDpWYCv8", + "id": "asst_CMtfUyymzFuBZRIdeRBYmCx8", "object": "assistant", - "created_at": 1758061374, + "created_at": 1761861469, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", + "model": "gpt-4o", + "instructions": null, "tools": [ { - "type": "code_interpreter" + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } } ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, "tool_resources": { - "code_interpreter": { - "file_ids": [] + "file_search": { + "vector_store_ids": [ + "vs_6903df5dce008191b059c1b487f8e60b" + ] } }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_FyuFvXNt2FDXGQqiJR420WMd", + "id": "asst_6QpiQpj2J3uuCjD1q83xdnxS", "object": "assistant", - "created_at": 1758061370, + "created_at": 1761861431, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "code_interpreter": { + "file_ids": [] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_FuBWsicv2aHJDFvs832IS1qZ", + "id": "asst_cLrDSF7FyYcUJOkh4dUGRSM3", "object": "assistant", - "created_at": 1758061364, + "created_at": 1761861426, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, - "metadata": { - "test_metadata_cleanup_eligible": "goodbye!" + "tool_resources": { + "code_interpreter": { + "file_ids": [] + } }, + "metadata": {}, "response_format": "auto" } ], - "first_id": "asst_giAAVlVa61Xbv1roKbZ7RkqV", - "last_id": "asst_FuBWsicv2aHJDFvs832IS1qZ", + "first_id": "asst_2SzJEYSaWBbPPDDIDdxfawI8", + "last_id": "asst_cLrDSF7FyYcUJOkh4dUGRSM3", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanEnumerateAssistantsAsyncAsync.json b/tests/SessionRecords/AssistantsTests/Pagination_CanEnumerateAssistantsAsyncAsync.json index 89796bd6c..f8455b909 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanEnumerateAssistantsAsyncAsync.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanEnumerateAssistantsAsyncAsync.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 0" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4604bb8a334-SEA", + "CF-RAY": "996e36af893d08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:09 GMT", + "Date": "Thu, 30 Oct 2025 22:05:22 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "213", + "openai-processing-ms": "848", "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": "219", + "x-envoy-upstream-service-time": "855", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_3pSbPc6TPK6I7w5P1OA4nTxX", + "id": "asst_3WbMWdx4LshJrvJiFaPbd6HA", "object": "assistant", - "created_at": 1758062049, + "created_at": 1761861922, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -57,41 +58,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 1" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4622d37a334-SEA", + "CF-RAY": "996e36b58ea308e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:09 GMT", + "Date": "Thu, 30 Oct 2025 22:05:22 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "194", + "openai-processing-ms": "431", "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": "199", + "x-envoy-upstream-service-time": "435", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_SqUXMEgfScw5yDo8oZy0XKNG", + "id": "asst_XdjpXnnPScpx6Fco7LbKnOek", "object": "assistant", - "created_at": 1758062049, + "created_at": 1761861922, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -108,41 +110,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 2" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d463ee9da334-SEA", + "CF-RAY": "996e36b8c98508e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:10 GMT", + "Date": "Thu, 30 Oct 2025 22:05:23 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "228", + "openai-processing-ms": "360", "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": "234", + "x-envoy-upstream-service-time": "368", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_wBQOL0mOs7ZabywHfUyWKrxu", + "id": "asst_cJvSLvQYvEyXDPBtOE9mpAsB", "object": "assistant", - "created_at": 1758062050, + "created_at": 1761861923, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -159,41 +162,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 3" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d465e896a334-SEA", + "CF-RAY": "996e36bb9c3708e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:10 GMT", + "Date": "Thu, 30 Oct 2025 22:05:23 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "188", + "openai-processing-ms": "213", "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": "194", + "x-envoy-upstream-service-time": "218", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_EEHh7VEefKS0verzDn69asAk", + "id": "asst_pui5bBGyYt71eGf5kVAHhWaF", "object": "assistant", - "created_at": 1758062050, + "created_at": 1761861923, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -210,41 +214,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 4" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d467aa37a334-SEA", + "CF-RAY": "996e36bd7dff08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:10 GMT", + "Date": "Thu, 30 Oct 2025 22:05:23 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "176", + "openai-processing-ms": "200", "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": "182", + "x-envoy-upstream-service-time": "207", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_jqHxB1iLyogfKLbZa4Ou5juv", + "id": "asst_tDdCw08IM5ymlYvCWxd1I1Jn", "object": "assistant", - "created_at": 1758062050, + "created_at": 1761861923, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -261,41 +266,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 5" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4695bd8a334-SEA", + "CF-RAY": "996e36bf7fea08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:11 GMT", + "Date": "Thu, 30 Oct 2025 22:05:24 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "183", + "openai-processing-ms": "342", "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": "190", + "x-envoy-upstream-service-time": "345", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_SHSeMjSgofz8UZc0blIlhgSn", + "id": "asst_RhrUhnXUAJxfC8mR20AR5kHv", "object": "assistant", - "created_at": 1758062050, + "created_at": 1761861924, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -312,41 +318,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 6" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d46b3d78a334-SEA", + "CF-RAY": "996e36c21a8f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:11 GMT", + "Date": "Thu, 30 Oct 2025 22:05:24 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "210", + "openai-processing-ms": "305", "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": "213", + "x-envoy-upstream-service-time": "308", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_tf8p2hP4YjpYDvABFhNN9WFU", + "id": "asst_SkrfijYhWKSbSis9uZ2hRigy", "object": "assistant", - "created_at": 1758062051, + "created_at": 1761861924, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -363,41 +370,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 7" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d46d0ee1a334-SEA", + "CF-RAY": "996e36c48cc708e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:11 GMT", + "Date": "Thu, 30 Oct 2025 22:05:24 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "222", + "openai-processing-ms": "305", "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": "224", + "x-envoy-upstream-service-time": "310", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_1b32hka4imzn0Mx6uhFpBjHf", + "id": "asst_suHuzkkCD74xSURgoXQLgFpx", "object": "assistant", - "created_at": 1758062051, + "created_at": 1761861924, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -414,41 +422,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 8" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d46ef86fa334-SEA", + "CF-RAY": "996e36c6fed708e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:11 GMT", + "Date": "Thu, 30 Oct 2025 22:05:25 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "137", + "openai-processing-ms": "258", "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": "140", + "x-envoy-upstream-service-time": "261", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_4SpEFdMJT4mOsynsOxZNoUMs", + "id": "asst_CRIDAQp5h6R0vZhx7ExTbcWB", "object": "assistant", - "created_at": 1758062051, + "created_at": 1761861925, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -465,41 +474,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 9" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d47059f8a334-SEA", + "CF-RAY": "996e36c928d108e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:12 GMT", + "Date": "Thu, 30 Oct 2025 22:05:25 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "245", + "openai-processing-ms": "282", "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": "250", + "x-envoy-upstream-service-time": "288", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_6009tQ6G4Vx0Lac1kKoCeC9l", + "id": "asst_apejWnFg2mA6fXCbuIUqgU5Y", "object": "assistant", - "created_at": 1758062052, + "created_at": 1761861925, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -517,38 +527,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4726ba6a334-SEA", + "CF-RAY": "996e36cb8b0108e3-SEA", "Connection": "keep-alive", - "Content-Length": "10612", + "Content-Length": "11056", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:14 GMT", + "Date": "Thu, 30 Oct 2025 22:05:26 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1901", + "openai-processing-ms": "698", "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": "1915", + "x-envoy-upstream-service-time": "708", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_6009tQ6G4Vx0Lac1kKoCeC9l", + "id": "asst_apejWnFg2mA6fXCbuIUqgU5Y", "object": "assistant", - "created_at": 1758062052, + "created_at": 1761861925, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -559,12 +570,12 @@ "response_format": "auto" }, { - "id": "asst_4SpEFdMJT4mOsynsOxZNoUMs", + "id": "asst_CRIDAQp5h6R0vZhx7ExTbcWB", "object": "assistant", - "created_at": 1758062051, + "created_at": 1761861925, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -575,12 +586,12 @@ "response_format": "auto" }, { - "id": "asst_1b32hka4imzn0Mx6uhFpBjHf", + "id": "asst_suHuzkkCD74xSURgoXQLgFpx", "object": "assistant", - "created_at": 1758062051, + "created_at": 1761861924, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -591,12 +602,12 @@ "response_format": "auto" }, { - "id": "asst_tf8p2hP4YjpYDvABFhNN9WFU", + "id": "asst_SkrfijYhWKSbSis9uZ2hRigy", "object": "assistant", - "created_at": 1758062051, + "created_at": 1761861924, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -607,12 +618,12 @@ "response_format": "auto" }, { - "id": "asst_SHSeMjSgofz8UZc0blIlhgSn", + "id": "asst_RhrUhnXUAJxfC8mR20AR5kHv", "object": "assistant", - "created_at": 1758062050, + "created_at": 1761861924, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -623,12 +634,12 @@ "response_format": "auto" }, { - "id": "asst_jqHxB1iLyogfKLbZa4Ou5juv", + "id": "asst_tDdCw08IM5ymlYvCWxd1I1Jn", "object": "assistant", - "created_at": 1758062050, + "created_at": 1761861923, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -639,12 +650,12 @@ "response_format": "auto" }, { - "id": "asst_EEHh7VEefKS0verzDn69asAk", + "id": "asst_pui5bBGyYt71eGf5kVAHhWaF", "object": "assistant", - "created_at": 1758062050, + "created_at": 1761861923, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -655,12 +666,12 @@ "response_format": "auto" }, { - "id": "asst_wBQOL0mOs7ZabywHfUyWKrxu", + "id": "asst_cJvSLvQYvEyXDPBtOE9mpAsB", "object": "assistant", - "created_at": 1758062050, + "created_at": 1761861923, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -671,12 +682,12 @@ "response_format": "auto" }, { - "id": "asst_SqUXMEgfScw5yDo8oZy0XKNG", + "id": "asst_XdjpXnnPScpx6Fco7LbKnOek", "object": "assistant", - "created_at": 1758062049, + "created_at": 1761861922, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -687,12 +698,12 @@ "response_format": "auto" }, { - "id": "asst_3pSbPc6TPK6I7w5P1OA4nTxX", + "id": "asst_3WbMWdx4LshJrvJiFaPbd6HA", "object": "assistant", - "created_at": 1758062049, + "created_at": 1761861922, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -703,12 +714,12 @@ "response_format": "auto" }, { - "id": "asst_32DHUtr98HlysiLpvZI0TGK4", + "id": "asst_6lRDlsgFTw5B1ApzpZO6Ugd3", "object": "assistant", - "created_at": 1758062028, + "created_at": 1761861898, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -737,12 +748,12 @@ "response_format": "auto" }, { - "id": "asst_wQp6IOUCGrVG4UXLBWWLCWBe", + "id": "asst_J253GyRUaZJy0vc9qA6LmDG6", "object": "assistant", - "created_at": 1758062015, + "created_at": 1761861885, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -763,7 +774,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e5bfe7b0819186d6ffba26943b93" + "vs_6903e0fdc7d481918342ac12bcc9c3b3" ] } }, @@ -771,12 +782,12 @@ "response_format": "auto" }, { - "id": "asst_SuYtgCAeRWt9aAeCIGZVm5R7", + "id": "asst_iFd6yQj3TvLHWFNpW45hvoHg", "object": "assistant", - "created_at": 1758062005, + "created_at": 1761861853, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -796,7 +807,7 @@ "tool_resources": { "file_search": { "vector_store_ids": [ - "vs_68c9e5b5f14c8191a0cc3d5b77072816" + "vs_6903e0ddaf6c8191b486d7612e23de97" ] } }, @@ -804,12 +815,12 @@ "response_format": "auto" }, { - "id": "asst_mDLP7ZbkQHTYbnsYhzX0o03I", + "id": "asst_6FAtbCDb1txjVRc5qo8BtBOl", "object": "assistant", - "created_at": 1758061949, + "created_at": 1761861827, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": "You help the user with mathematical descriptions and visualizations.", "tools": [ { @@ -828,12 +839,12 @@ "response_format": "auto" }, { - "id": "asst_KpQVl8RV9QIGduGhIcMnOoiq", + "id": "asst_3OJz0DXezz4WCqyUXBDVfLky", "object": "assistant", - "created_at": 1758061943, + "created_at": 1761861822, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -844,12 +855,12 @@ "response_format": "auto" }, { - "id": "asst_HUuidlcdCe8mYc6iTXAqtuVK", + "id": "asst_7UjhUk3bK33iJqfox0v5WfdT", "object": "assistant", - "created_at": 1758061934, + "created_at": 1761861817, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -862,12 +873,12 @@ "response_format": "auto" }, { - "id": "asst_oq7Dtuk1vCVMs2I8FWywA53X", + "id": "asst_CfJdd8d7FTaC8peLEVJDY9Vu", "object": "assistant", - "created_at": 1758061924, + "created_at": 1761861804, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -891,66 +902,89 @@ "response_format": "auto" }, { - "id": "asst_SfPyHp1sqcjZ6tJ1xDpWYCv8", + "id": "asst_CMtfUyymzFuBZRIdeRBYmCx8", "object": "assistant", - "created_at": 1758061374, + "created_at": 1761861469, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": "You help the user with mathematical descriptions and visualizations.", + "model": "gpt-4o", + "instructions": null, "tools": [ { - "type": "code_interpreter" + "type": "file_search", + "file_search": { + "ranking_options": { + "ranker": "default_2024_08_21", + "score_threshold": 0.0, + "hybrid_search": null + } + } } ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, "tool_resources": { - "code_interpreter": { - "file_ids": [] + "file_search": { + "vector_store_ids": [ + "vs_6903df5dce008191b059c1b487f8e60b" + ] } }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_FyuFvXNt2FDXGQqiJR420WMd", + "id": "asst_6QpiQpj2J3uuCjD1q83xdnxS", "object": "assistant", - "created_at": 1758061370, + "created_at": 1761861431, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, + "tool_resources": { + "code_interpreter": { + "file_ids": [] + } + }, "metadata": {}, "response_format": "auto" }, { - "id": "asst_FuBWsicv2aHJDFvs832IS1qZ", + "id": "asst_cLrDSF7FyYcUJOkh4dUGRSM3", "object": "assistant", - "created_at": 1758061364, + "created_at": 1761861426, "name": null, "description": null, - "model": "gpt-4o-mini", - "instructions": null, - "tools": [], + "model": "gpt-4o", + "instructions": "You help the user with mathematical descriptions and visualizations.", + "tools": [ + { + "type": "code_interpreter" + } + ], "top_p": 1.0, "temperature": 1.0, "reasoning_effort": null, - "tool_resources": {}, - "metadata": { - "test_metadata_cleanup_eligible": "goodbye!" + "tool_resources": { + "code_interpreter": { + "file_ids": [] + } }, + "metadata": {}, "response_format": "auto" } ], - "first_id": "asst_6009tQ6G4Vx0Lac1kKoCeC9l", - "last_id": "asst_FuBWsicv2aHJDFvs832IS1qZ", + "first_id": "asst_apejWnFg2mA6fXCbuIUqgU5Y", + "last_id": "asst_cLrDSF7FyYcUJOkh4dUGRSM3", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanPageThroughAssistantCollection.json b/tests/SessionRecords/AssistantsTests/Pagination_CanPageThroughAssistantCollection.json index 6e870f2b0..135f3ef78 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanPageThroughAssistantCollection.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanPageThroughAssistantCollection.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 0" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cde7cdb8a334-SEA", + "CF-RAY": "996e316e5f9a08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:44 GMT", + "Date": "Thu, 30 Oct 2025 22:01:48 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "138", + "openai-processing-ms": "2114", "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": "140", + "x-envoy-upstream-service-time": "2780", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_XYLiFsIYDUQIhDwI8UpFbqsx", + "id": "asst_62Mut8gQ7GZ22ymlGEDVtUW8", "object": "assistant", - "created_at": 1758061784, + "created_at": 1761861708, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -57,41 +58,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 1" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cde94ed4a334-SEA", + "CF-RAY": "996e31809a7908e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:44 GMT", + "Date": "Thu, 30 Oct 2025 22:01:49 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "217", + "openai-processing-ms": "402", "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": "225", + "x-envoy-upstream-service-time": "413", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_2WlAsrasyaGH7kOdfEuavcz3", + "id": "asst_NYuXgNvOQ7CATlQxnq6wxXGN", "object": "assistant", - "created_at": 1758061784, + "created_at": 1761861709, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -108,41 +110,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 2" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdeb3820a334-SEA", + "CF-RAY": "996e3183cde808e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:45 GMT", + "Date": "Thu, 30 Oct 2025 22:01:49 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "256", + "openai-processing-ms": "347", "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": "265", + "x-envoy-upstream-service-time": "360", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_4A556JKZkDZCzYi6VfR0lAPO", + "id": "asst_E0TV6Q8wGYDJ0escUMOBbwem", "object": "assistant", - "created_at": 1758061785, + "created_at": 1761861709, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -159,41 +162,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 3" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cded69c7a334-SEA", + "CF-RAY": "996e318698c308e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:45 GMT", + "Date": "Thu, 30 Oct 2025 22:01:50 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "182", + "openai-processing-ms": "385", "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": "186", + "x-envoy-upstream-service-time": "403", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_c7oDUtNh9xs60DRus5Y0ijoO", + "id": "asst_1YTHxCv4IaJa4MLpclTY3wpk", "object": "assistant", - "created_at": 1758061785, + "created_at": 1761861710, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -210,41 +214,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 4" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdef1b0ba334-SEA", + "CF-RAY": "996e3189ac3108e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:45 GMT", + "Date": "Thu, 30 Oct 2025 22:01:51 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "261", + "openai-processing-ms": "623", "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": "273", + "x-envoy-upstream-service-time": "653", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_qMDet7FLuNKQqPrn1Ostr7Zl", + "id": "asst_3Ca0G75TvChfnYNLVWePVO5I", "object": "assistant", - "created_at": 1758061785, + "created_at": 1761861710, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -261,41 +266,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 5" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdf15ce7a334-SEA", + "CF-RAY": "996e318e698c08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:46 GMT", + "Date": "Thu, 30 Oct 2025 22:01:51 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "371", + "openai-processing-ms": "184", "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": "389", + "x-envoy-upstream-service-time": "187", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_XAIZpryDzcPduHHU2PiJNGr0", + "id": "asst_kKiNPVVF8r1YYn7Oi74f5lJz", "object": "assistant", - "created_at": 1758061786, + "created_at": 1761861711, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -312,41 +318,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 6" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cdf44f2da334-SEA", + "CF-RAY": "996e31901b5408e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:49 GMT", + "Date": "Thu, 30 Oct 2025 22:01:51 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "3063", + "openai-processing-ms": "296", "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": "3432", + "x-envoy-upstream-service-time": "300", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_zQC7Ko942o3plmNZfxI1JSik", + "id": "asst_JGFpweN0FT0JMy7B7hGeGRNZ", "object": "assistant", - "created_at": 1758061789, + "created_at": 1761861711, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -363,41 +370,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 7" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce0a7a9aa334-SEA", + "CF-RAY": "996e31928ea708e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:50 GMT", + "Date": "Thu, 30 Oct 2025 22:01:52 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "581", + "openai-processing-ms": "364", "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": "634", + "x-envoy-upstream-service-time": "377", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_R11oblM4Ix35tKPqnJzRtJVZ", + "id": "asst_utuW1Yffo4nA29bHesbJ2fWl", "object": "assistant", - "created_at": 1758061790, + "created_at": 1761861712, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -414,41 +422,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 8" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce0eff01a334-SEA", + "CF-RAY": "996e31957ae408e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:53 GMT", + "Date": "Thu, 30 Oct 2025 22:01:52 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "2506", + "openai-processing-ms": "243", "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": "2557", + "x-envoy-upstream-service-time": "246", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_ZrhJ1oytcUvI5IO1aYAdEHqw", + "id": "asst_zB22j0ffd1jx4e79ODh9eL0W", "object": "assistant", - "created_at": 1758061792, + "created_at": 1761861712, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -465,41 +474,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 9" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce1f8f3da334-SEA", + "CF-RAY": "996e31979d4908e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:53 GMT", + "Date": "Thu, 30 Oct 2025 22:01:52 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "141", + "openai-processing-ms": "306", "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": "145", + "x-envoy-upstream-service-time": "310", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_dGp7Zda7P73qYys82ao3HNHn", + "id": "asst_9o01fuQ0As86M7KHb6b7bTQq", "object": "assistant", - "created_at": 1758061793, + "created_at": 1761861712, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -517,38 +527,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce20e895a334-SEA", + "CF-RAY": "996e319a1fe308e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:53 GMT", + "Date": "Thu, 30 Oct 2025 22:01:54 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "433", + "openai-processing-ms": "705", "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": "440", + "x-envoy-upstream-service-time": "709", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_dGp7Zda7P73qYys82ao3HNHn", + "id": "asst_9o01fuQ0As86M7KHb6b7bTQq", "object": "assistant", - "created_at": 1758061793, + "created_at": 1761861712, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -559,12 +570,12 @@ "response_format": "auto" }, { - "id": "asst_ZrhJ1oytcUvI5IO1aYAdEHqw", + "id": "asst_zB22j0ffd1jx4e79ODh9eL0W", "object": "assistant", - "created_at": 1758061792, + "created_at": 1761861712, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -575,50 +586,51 @@ "response_format": "auto" } ], - "first_id": "asst_dGp7Zda7P73qYys82ao3HNHn", - "last_id": "asst_ZrhJ1oytcUvI5IO1aYAdEHqw", + "first_id": "asst_9o01fuQ0As86M7KHb6b7bTQq", + "last_id": "asst_zB22j0ffd1jx4e79ODh9eL0W", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_ZrhJ1oytcUvI5IO1aYAdEHqw", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_zB22j0ffd1jx4e79ODh9eL0W", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce245b04a334-SEA", + "CF-RAY": "996e31a0af9408e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:54 GMT", + "Date": "Thu, 30 Oct 2025 22:01:54 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "378", + "openai-processing-ms": "595", "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": "381", + "x-envoy-upstream-service-time": "599", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_R11oblM4Ix35tKPqnJzRtJVZ", + "id": "asst_utuW1Yffo4nA29bHesbJ2fWl", "object": "assistant", - "created_at": 1758061790, + "created_at": 1761861712, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -629,12 +641,12 @@ "response_format": "auto" }, { - "id": "asst_zQC7Ko942o3plmNZfxI1JSik", + "id": "asst_JGFpweN0FT0JMy7B7hGeGRNZ", "object": "assistant", - "created_at": 1758061789, + "created_at": 1761861711, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -645,50 +657,51 @@ "response_format": "auto" } ], - "first_id": "asst_R11oblM4Ix35tKPqnJzRtJVZ", - "last_id": "asst_zQC7Ko942o3plmNZfxI1JSik", + "first_id": "asst_utuW1Yffo4nA29bHesbJ2fWl", + "last_id": "asst_JGFpweN0FT0JMy7B7hGeGRNZ", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_zQC7Ko942o3plmNZfxI1JSik", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_JGFpweN0FT0JMy7B7hGeGRNZ", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce273d22a334-SEA", + "CF-RAY": "996e31a4ec0b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:55 GMT", + "Date": "Thu, 30 Oct 2025 22:01:55 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "556", + "openai-processing-ms": "491", "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": "561", + "x-envoy-upstream-service-time": "494", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_XAIZpryDzcPduHHU2PiJNGr0", + "id": "asst_kKiNPVVF8r1YYn7Oi74f5lJz", "object": "assistant", - "created_at": 1758061786, + "created_at": 1761861711, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -699,12 +712,12 @@ "response_format": "auto" }, { - "id": "asst_qMDet7FLuNKQqPrn1Ostr7Zl", + "id": "asst_3Ca0G75TvChfnYNLVWePVO5I", "object": "assistant", - "created_at": 1758061785, + "created_at": 1761861710, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -715,50 +728,51 @@ "response_format": "auto" } ], - "first_id": "asst_XAIZpryDzcPduHHU2PiJNGr0", - "last_id": "asst_qMDet7FLuNKQqPrn1Ostr7Zl", + "first_id": "asst_kKiNPVVF8r1YYn7Oi74f5lJz", + "last_id": "asst_3Ca0G75TvChfnYNLVWePVO5I", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_qMDet7FLuNKQqPrn1Ostr7Zl", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_3Ca0G75TvChfnYNLVWePVO5I", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce2b384ba334-SEA", + "CF-RAY": "996e31a8a80708e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:56 GMT", + "Date": "Thu, 30 Oct 2025 22:01:56 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1546", + "openai-processing-ms": "1501", "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": "1549", + "x-envoy-upstream-service-time": "1509", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_c7oDUtNh9xs60DRus5Y0ijoO", + "id": "asst_1YTHxCv4IaJa4MLpclTY3wpk", "object": "assistant", - "created_at": 1758061785, + "created_at": 1761861710, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -769,12 +783,12 @@ "response_format": "auto" }, { - "id": "asst_4A556JKZkDZCzYi6VfR0lAPO", + "id": "asst_E0TV6Q8wGYDJ0escUMOBbwem", "object": "assistant", - "created_at": 1758061785, + "created_at": 1761861709, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -785,50 +799,51 @@ "response_format": "auto" } ], - "first_id": "asst_c7oDUtNh9xs60DRus5Y0ijoO", - "last_id": "asst_4A556JKZkDZCzYi6VfR0lAPO", + "first_id": "asst_1YTHxCv4IaJa4MLpclTY3wpk", + "last_id": "asst_E0TV6Q8wGYDJ0escUMOBbwem", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_4A556JKZkDZCzYi6VfR0lAPO", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_E0TV6Q8wGYDJ0escUMOBbwem", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce357895a334-SEA", + "CF-RAY": "996e31b29b2508e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:57 GMT", + "Date": "Thu, 30 Oct 2025 22:01:57 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "491", + "openai-processing-ms": "542", "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": "502", + "x-envoy-upstream-service-time": "553", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_2WlAsrasyaGH7kOdfEuavcz3", + "id": "asst_NYuXgNvOQ7CATlQxnq6wxXGN", "object": "assistant", - "created_at": 1758061784, + "created_at": 1761861709, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -839,12 +854,12 @@ "response_format": "auto" }, { - "id": "asst_XYLiFsIYDUQIhDwI8UpFbqsx", + "id": "asst_62Mut8gQ7GZ22ymlGEDVtUW8", "object": "assistant", - "created_at": 1758061784, + "created_at": 1761861708, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -855,8 +870,8 @@ "response_format": "auto" } ], - "first_id": "asst_2WlAsrasyaGH7kOdfEuavcz3", - "last_id": "asst_XYLiFsIYDUQIhDwI8UpFbqsx", + "first_id": "asst_NYuXgNvOQ7CATlQxnq6wxXGN", + "last_id": "asst_62Mut8gQ7GZ22ymlGEDVtUW8", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanPageThroughAssistantCollectionAsync.json b/tests/SessionRecords/AssistantsTests/Pagination_CanPageThroughAssistantCollectionAsync.json index ca0674706..da5efb957 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanPageThroughAssistantCollectionAsync.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanPageThroughAssistantCollectionAsync.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 0" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d47f4f5da334-SEA", + "CF-RAY": "996e36d0e86008e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:14 GMT", + "Date": "Thu, 30 Oct 2025 22:05:29 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "188", + "openai-processing-ms": "2359", "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": "192", + "x-envoy-upstream-service-time": "3051", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_AexjpSfMikDflKksA2kUIx5Y", + "id": "asst_tipCMSQHbccIb8MkY2XH0AJM", "object": "assistant", - "created_at": 1758062054, + "created_at": 1761861928, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -57,41 +58,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 1" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d48128d3a334-SEA", + "CF-RAY": "996e36e4d9ee08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:16 GMT", + "Date": "Thu, 30 Oct 2025 22:05:30 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "370", + "openai-processing-ms": "460", "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": "1681", + "x-envoy-upstream-service-time": "463", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_sX3lSP0fU7sJ8G8XoslDMRqH", + "id": "asst_Fa56FlMAYQ8tngtgtrrQ1hQT", "object": "assistant", - "created_at": 1758062056, + "created_at": 1761861930, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -108,41 +110,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 2" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d48c2a77a334-SEA", + "CF-RAY": "996e36e85d4c08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:16 GMT", + "Date": "Thu, 30 Oct 2025 22:05:30 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "150", + "openai-processing-ms": "329", "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": "155", + "x-envoy-upstream-service-time": "346", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_DdVz5ddLKEGfXvgpEX4zOCzC", + "id": "asst_WGSVMsB8Xr8BngVFT3fOYDmX", "object": "assistant", - "created_at": 1758062056, + "created_at": 1761861930, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -159,41 +162,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 3" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d48d9bb6a334-SEA", + "CF-RAY": "996e36eb0ffc08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:16 GMT", + "Date": "Thu, 30 Oct 2025 22:05:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "132", + "openai-processing-ms": "517", "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": "134", + "x-envoy-upstream-service-time": "520", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_xO9rZThHERuMWWsv4OvmuJiB", + "id": "asst_0q1rWxYJJrB5HFK876Vvnz6m", "object": "assistant", - "created_at": 1758062056, + "created_at": 1761861931, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -210,41 +214,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 4" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d48efd14a334-SEA", + "CF-RAY": "996e36eedb5108e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:17 GMT", + "Date": "Thu, 30 Oct 2025 22:05:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "253", + "openai-processing-ms": "190", "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": "303", + "x-envoy-upstream-service-time": "193", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_asnZqepJbymcb2GiDuW7nd8f", + "id": "asst_v9SvrAlO5kk1WpmW6fMs6Zkr", "object": "assistant", - "created_at": 1758062057, + "created_at": 1761861931, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -261,41 +266,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 5" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4915f0da334-SEA", + "CF-RAY": "996e36f09d3408e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:17 GMT", + "Date": "Thu, 30 Oct 2025 22:05:32 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "194", + "openai-processing-ms": "419", "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": "197", + "x-envoy-upstream-service-time": "431", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_Vv2UuXZl7FJrIudMV8Ykjeow", + "id": "asst_drRhNOjAUmcvsGkRQXmPYiu3", "object": "assistant", - "created_at": 1758062057, + "created_at": 1761861931, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -312,41 +318,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 6" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d493189ca334-SEA", + "CF-RAY": "996e36f3c82f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:18 GMT", + "Date": "Thu, 30 Oct 2025 22:05:33 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "681", + "openai-processing-ms": "728", "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": "764", + "x-envoy-upstream-service-time": "835", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_UQLJhW3pGAU1CthSUH9DAMzI", + "id": "asst_p4QXunTfYg8d7Ax7dyxyi4uc", "object": "assistant", - "created_at": 1758062058, + "created_at": 1761861932, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -363,41 +370,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 7" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d498884aa334-SEA", + "CF-RAY": "996e36f99d9c08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:18 GMT", + "Date": "Thu, 30 Oct 2025 22:05:36 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "181", + "openai-processing-ms": "2300", "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": "188", + "x-envoy-upstream-service-time": "2881", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_BYMZYuJdmVy1luhCQe5zkSpX", + "id": "asst_DQSbqpsoZSKFBBSBmSilteV3", "object": "assistant", - "created_at": 1758062058, + "created_at": 1761861935, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -414,41 +422,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 8" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d49a39c5a334-SEA", + "CF-RAY": "996e370ccedd08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:18 GMT", + "Date": "Thu, 30 Oct 2025 22:05:36 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "170", + "openai-processing-ms": "239", "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": "176", + "x-envoy-upstream-service-time": "243", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_eouJItcfU8kKewC57BOeQlhI", + "id": "asst_69Iibi3OU7uBK2sGQ8h7FISK", "object": "assistant", - "created_at": 1758062058, + "created_at": 1761861936, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -465,41 +474,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 9" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d49beb45a334-SEA", + "CF-RAY": "996e370ee8ea08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:19 GMT", + "Date": "Thu, 30 Oct 2025 22:05:36 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "206", + "openai-processing-ms": "175", "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": "214", + "x-envoy-upstream-service-time": "182", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_prMNIELQt6wTk0gyVhs7M6Wp", + "id": "asst_4vhRjoQuutSynYzqPxphPI3E", "object": "assistant", - "created_at": 1758062059, + "created_at": 1761861936, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -517,38 +527,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d49dbcdda334-SEA", + "CF-RAY": "996e37108a6208e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:19 GMT", + "Date": "Thu, 30 Oct 2025 22:05:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "441", + "openai-processing-ms": "404", "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": "451", + "x-envoy-upstream-service-time": "420", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_prMNIELQt6wTk0gyVhs7M6Wp", + "id": "asst_4vhRjoQuutSynYzqPxphPI3E", "object": "assistant", - "created_at": 1758062059, + "created_at": 1761861936, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -559,12 +570,12 @@ "response_format": "auto" }, { - "id": "asst_eouJItcfU8kKewC57BOeQlhI", + "id": "asst_69Iibi3OU7uBK2sGQ8h7FISK", "object": "assistant", - "created_at": 1758062058, + "created_at": 1761861936, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -575,50 +586,51 @@ "response_format": "auto" } ], - "first_id": "asst_prMNIELQt6wTk0gyVhs7M6Wp", - "last_id": "asst_eouJItcfU8kKewC57BOeQlhI", + "first_id": "asst_4vhRjoQuutSynYzqPxphPI3E", + "last_id": "asst_69Iibi3OU7uBK2sGQ8h7FISK", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_eouJItcfU8kKewC57BOeQlhI", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_69Iibi3OU7uBK2sGQ8h7FISK", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4a12f85a334-SEA", + "CF-RAY": "996e3713dd5908e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:20 GMT", + "Date": "Thu, 30 Oct 2025 22:05:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "438", + "openai-processing-ms": "553", "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": "443", + "x-envoy-upstream-service-time": "560", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_BYMZYuJdmVy1luhCQe5zkSpX", + "id": "asst_DQSbqpsoZSKFBBSBmSilteV3", "object": "assistant", - "created_at": 1758062058, + "created_at": 1761861935, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -629,12 +641,12 @@ "response_format": "auto" }, { - "id": "asst_UQLJhW3pGAU1CthSUH9DAMzI", + "id": "asst_p4QXunTfYg8d7Ax7dyxyi4uc", "object": "assistant", - "created_at": 1758062058, + "created_at": 1761861932, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -645,50 +657,51 @@ "response_format": "auto" } ], - "first_id": "asst_BYMZYuJdmVy1luhCQe5zkSpX", - "last_id": "asst_UQLJhW3pGAU1CthSUH9DAMzI", + "first_id": "asst_DQSbqpsoZSKFBBSBmSilteV3", + "last_id": "asst_p4QXunTfYg8d7Ax7dyxyi4uc", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_UQLJhW3pGAU1CthSUH9DAMzI", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_p4QXunTfYg8d7Ax7dyxyi4uc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4a46a64a334-SEA", + "CF-RAY": "996e371889ca08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:20 GMT", + "Date": "Thu, 30 Oct 2025 22:05:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "365", + "openai-processing-ms": "721", "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": "372", + "x-envoy-upstream-service-time": "725", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_Vv2UuXZl7FJrIudMV8Ykjeow", + "id": "asst_drRhNOjAUmcvsGkRQXmPYiu3", "object": "assistant", - "created_at": 1758062057, + "created_at": 1761861931, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -699,12 +712,12 @@ "response_format": "auto" }, { - "id": "asst_asnZqepJbymcb2GiDuW7nd8f", + "id": "asst_v9SvrAlO5kk1WpmW6fMs6Zkr", "object": "assistant", - "created_at": 1758062057, + "created_at": 1761861931, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -715,50 +728,51 @@ "response_format": "auto" } ], - "first_id": "asst_Vv2UuXZl7FJrIudMV8Ykjeow", - "last_id": "asst_asnZqepJbymcb2GiDuW7nd8f", + "first_id": "asst_drRhNOjAUmcvsGkRQXmPYiu3", + "last_id": "asst_v9SvrAlO5kk1WpmW6fMs6Zkr", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_asnZqepJbymcb2GiDuW7nd8f", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_v9SvrAlO5kk1WpmW6fMs6Zkr", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4a75d2da334-SEA", + "CF-RAY": "996e371d9e0e08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:21 GMT", + "Date": "Thu, 30 Oct 2025 22:05:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "529", + "openai-processing-ms": "2522", "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": "551", + "x-envoy-upstream-service-time": "2780", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_xO9rZThHERuMWWsv4OvmuJiB", + "id": "asst_0q1rWxYJJrB5HFK876Vvnz6m", "object": "assistant", - "created_at": 1758062056, + "created_at": 1761861931, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -769,12 +783,12 @@ "response_format": "auto" }, { - "id": "asst_DdVz5ddLKEGfXvgpEX4zOCzC", + "id": "asst_WGSVMsB8Xr8BngVFT3fOYDmX", "object": "assistant", - "created_at": 1758062056, + "created_at": 1761861930, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -785,50 +799,51 @@ "response_format": "auto" } ], - "first_id": "asst_xO9rZThHERuMWWsv4OvmuJiB", - "last_id": "asst_DdVz5ddLKEGfXvgpEX4zOCzC", + "first_id": "asst_0q1rWxYJJrB5HFK876Vvnz6m", + "last_id": "asst_WGSVMsB8Xr8BngVFT3fOYDmX", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_DdVz5ddLKEGfXvgpEX4zOCzC", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_WGSVMsB8Xr8BngVFT3fOYDmX", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4ab5872a334-SEA", + "CF-RAY": "996e372fce0e08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:21 GMT", + "Date": "Thu, 30 Oct 2025 22:05:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "562", + "openai-processing-ms": "377", "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": "567", + "x-envoy-upstream-service-time": "389", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_sX3lSP0fU7sJ8G8XoslDMRqH", + "id": "asst_Fa56FlMAYQ8tngtgtrrQ1hQT", "object": "assistant", - "created_at": 1758062056, + "created_at": 1761861930, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -839,12 +854,12 @@ "response_format": "auto" }, { - "id": "asst_AexjpSfMikDflKksA2kUIx5Y", + "id": "asst_tipCMSQHbccIb8MkY2XH0AJM", "object": "assistant", - "created_at": 1758062054, + "created_at": 1761861928, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -855,8 +870,8 @@ "response_format": "auto" } ], - "first_id": "asst_sX3lSP0fU7sJ8G8XoslDMRqH", - "last_id": "asst_AexjpSfMikDflKksA2kUIx5Y", + "first_id": "asst_Fa56FlMAYQ8tngtgtrrQ1hQT", + "last_id": "asst_tipCMSQHbccIb8MkY2XH0AJM", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromBytes.json b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromBytes.json index 030abb9e7..dfa00492c 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromBytes.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromBytes.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 0" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce399c32a334-SEA", + "CF-RAY": "996e31b7089008e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:57 GMT", + "Date": "Thu, 30 Oct 2025 22:01:57 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "173", + "openai-processing-ms": "288", "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": "176", + "x-envoy-upstream-service-time": "293", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_IAIVM9sbm2n2xTAe290Ffb2G", + "id": "asst_25BrlQke77cHe97sIz7hIS7a", "object": "assistant", - "created_at": 1758061797, + "created_at": 1761861717, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -57,41 +58,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 1" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce3b5d6ea334-SEA", + "CF-RAY": "996e31b96b5d08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:57 GMT", + "Date": "Thu, 30 Oct 2025 22:01:58 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "253", + "openai-processing-ms": "193", "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": "264", + "x-envoy-upstream-service-time": "197", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_dwJAkZcpfnrsMfOHQaHJ9qqa", + "id": "asst_KMssi71y93YGD0tGxsHiVMxN", "object": "assistant", - "created_at": 1758061797, + "created_at": 1761861718, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -108,41 +110,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 2" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce3d8f00a334-SEA", + "CF-RAY": "996e31bb2d2808e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:59 GMT", + "Date": "Thu, 30 Oct 2025 22:01:58 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1233", + "openai-processing-ms": "322", "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": "1400", + "x-envoy-upstream-service-time": "330", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_JQdx18FBEbZlZ8F4jqDs9dGq", + "id": "asst_qEBp5ZgUi1oKbEot2OFKCXBm", "object": "assistant", - "created_at": 1758061799, + "created_at": 1761861718, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -159,41 +162,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 3" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce46ef6fa334-SEA", + "CF-RAY": "996e31bdafe608e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:29:59 GMT", + "Date": "Thu, 30 Oct 2025 22:01:59 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "184", + "openai-processing-ms": "451", "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": "196", + "x-envoy-upstream-service-time": "454", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_EiZVzJNMLjlDo649zGqwzwgZ", + "id": "asst_RRX8UPKzesr60Vkgb5iCztm6", "object": "assistant", - "created_at": 1758061799, + "created_at": 1761861718, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -210,41 +214,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 4" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce48a914a334-SEA", + "CF-RAY": "996e31c10b8408e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:00 GMT", + "Date": "Thu, 30 Oct 2025 22:01:59 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "268", + "openai-processing-ms": "403", "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": "274", + "x-envoy-upstream-service-time": "417", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_VAw8BlBIkW6TC8eK74T3Ydnu", + "id": "asst_HErsrm728QQYnJMXL5ac84BP", "object": "assistant", - "created_at": 1758061800, + "created_at": 1761861719, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -261,41 +266,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 5" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce4b0b7ba334-SEA", + "CF-RAY": "996e31c43ebf08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:00 GMT", + "Date": "Thu, 30 Oct 2025 22:02:00 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "158", + "openai-processing-ms": "323", "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": "165", + "x-envoy-upstream-service-time": "332", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_lCBOBMsG7tCKOAlOwbkCaVk6", + "id": "asst_MHf5rkSoxdFCzF3G6NMwTVaa", "object": "assistant", - "created_at": 1758061800, + "created_at": 1761861720, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -312,41 +318,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 6" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce4c9d0fa334-SEA", + "CF-RAY": "996e31c6e96c08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:00 GMT", + "Date": "Thu, 30 Oct 2025 22:02:00 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "221", + "openai-processing-ms": "269", "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": "227", + "x-envoy-upstream-service-time": "274", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_Qbx50VECzaAhrVeC4HccbF13", + "id": "asst_BNOMFjKQcGcmiOLUxalcZzAe", "object": "assistant", - "created_at": 1758061800, + "created_at": 1761861720, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -363,41 +370,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 7" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce4e7f3ca334-SEA", + "CF-RAY": "996e31c92bb908e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:00 GMT", + "Date": "Thu, 30 Oct 2025 22:02:00 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "130", + "openai-processing-ms": "302", "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": "133", + "x-envoy-upstream-service-time": "305", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_32jhGk68pNqABO3nK7MMQ03B", + "id": "asst_MRwgtEz1NDYMRALaSqDscbYQ", "object": "assistant", - "created_at": 1758061800, + "created_at": 1761861720, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -414,41 +422,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 8" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce4fe8c5a334-SEA", + "CF-RAY": "996e31cbae8308e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:01 GMT", + "Date": "Thu, 30 Oct 2025 22:02:01 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "129", + "openai-processing-ms": "218", "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": "132", + "x-envoy-upstream-service-time": "228", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_zZfGTLANSPNpVXKCqdFq27l4", + "id": "asst_GtFqdTSwxxhyQacBoZQ7WwUk", "object": "assistant", - "created_at": 1758061801, + "created_at": 1761861721, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -465,41 +474,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 9" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce514a46a334-SEA", + "CF-RAY": "996e31cd98d408e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:01 GMT", + "Date": "Thu, 30 Oct 2025 22:02:01 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "302", + "openai-processing-ms": "201", "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": "312", + "x-envoy-upstream-service-time": "208", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_qqgK4BnTaJ3qN8sCfmHpRR7l", + "id": "asst_yLK06dX9Z0fROvSCw0XnQzfw", "object": "assistant", - "created_at": 1758061801, + "created_at": 1761861721, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -517,38 +527,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce53dcaaa334-SEA", + "CF-RAY": "996e31cf6b0108e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:02 GMT", + "Date": "Thu, 30 Oct 2025 22:02:02 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "387", + "openai-processing-ms": "556", "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": "395", + "x-envoy-upstream-service-time": "573", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_qqgK4BnTaJ3qN8sCfmHpRR7l", + "id": "asst_yLK06dX9Z0fROvSCw0XnQzfw", "object": "assistant", - "created_at": 1758061801, + "created_at": 1761861721, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -559,12 +570,12 @@ "response_format": "auto" }, { - "id": "asst_zZfGTLANSPNpVXKCqdFq27l4", + "id": "asst_GtFqdTSwxxhyQacBoZQ7WwUk", "object": "assistant", - "created_at": 1758061801, + "created_at": 1761861721, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -575,50 +586,51 @@ "response_format": "auto" } ], - "first_id": "asst_qqgK4BnTaJ3qN8sCfmHpRR7l", - "last_id": "asst_zZfGTLANSPNpVXKCqdFq27l4", + "first_id": "asst_yLK06dX9Z0fROvSCw0XnQzfw", + "last_id": "asst_GtFqdTSwxxhyQacBoZQ7WwUk", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_zZfGTLANSPNpVXKCqdFq27l4", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_GtFqdTSwxxhyQacBoZQ7WwUk", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce571fcda334-SEA", + "CF-RAY": "996e31d3aff908e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:02 GMT", + "Date": "Thu, 30 Oct 2025 22:02:03 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "365", + "openai-processing-ms": "795", "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": "368", + "x-envoy-upstream-service-time": "803", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_32jhGk68pNqABO3nK7MMQ03B", + "id": "asst_MRwgtEz1NDYMRALaSqDscbYQ", "object": "assistant", - "created_at": 1758061800, + "created_at": 1761861720, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -629,12 +641,12 @@ "response_format": "auto" }, { - "id": "asst_Qbx50VECzaAhrVeC4HccbF13", + "id": "asst_BNOMFjKQcGcmiOLUxalcZzAe", "object": "assistant", - "created_at": 1758061800, + "created_at": 1761861720, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -645,50 +657,51 @@ "response_format": "auto" } ], - "first_id": "asst_32jhGk68pNqABO3nK7MMQ03B", - "last_id": "asst_Qbx50VECzaAhrVeC4HccbF13", + "first_id": "asst_MRwgtEz1NDYMRALaSqDscbYQ", + "last_id": "asst_BNOMFjKQcGcmiOLUxalcZzAe", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_Qbx50VECzaAhrVeC4HccbF13", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_BNOMFjKQcGcmiOLUxalcZzAe", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce59ea2ca334-SEA", + "CF-RAY": "996e31d93de708e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:03 GMT", + "Date": "Thu, 30 Oct 2025 22:02:03 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "511", + "openai-processing-ms": "374", "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": "514", + "x-envoy-upstream-service-time": "377", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_lCBOBMsG7tCKOAlOwbkCaVk6", + "id": "asst_MHf5rkSoxdFCzF3G6NMwTVaa", "object": "assistant", - "created_at": 1758061800, + "created_at": 1761861720, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -699,12 +712,12 @@ "response_format": "auto" }, { - "id": "asst_VAw8BlBIkW6TC8eK74T3Ydnu", + "id": "asst_HErsrm728QQYnJMXL5ac84BP", "object": "assistant", - "created_at": 1758061800, + "created_at": 1761861719, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -715,50 +728,51 @@ "response_format": "auto" } ], - "first_id": "asst_lCBOBMsG7tCKOAlOwbkCaVk6", - "last_id": "asst_VAw8BlBIkW6TC8eK74T3Ydnu", + "first_id": "asst_MHf5rkSoxdFCzF3G6NMwTVaa", + "last_id": "asst_HErsrm728QQYnJMXL5ac84BP", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_VAw8BlBIkW6TC8eK74T3Ydnu", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_HErsrm728QQYnJMXL5ac84BP", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce5dad73a334-SEA", + "CF-RAY": "996e31dc392b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:04 GMT", + "Date": "Thu, 30 Oct 2025 22:02:04 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1711", + "openai-processing-ms": "614", "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": "1749", + "x-envoy-upstream-service-time": "624", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_EiZVzJNMLjlDo649zGqwzwgZ", + "id": "asst_RRX8UPKzesr60Vkgb5iCztm6", "object": "assistant", - "created_at": 1758061799, + "created_at": 1761861718, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -769,12 +783,12 @@ "response_format": "auto" }, { - "id": "asst_JQdx18FBEbZlZ8F4jqDs9dGq", + "id": "asst_qEBp5ZgUi1oKbEot2OFKCXBm", "object": "assistant", - "created_at": 1758061799, + "created_at": 1761861718, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -785,50 +799,51 @@ "response_format": "auto" } ], - "first_id": "asst_EiZVzJNMLjlDo649zGqwzwgZ", - "last_id": "asst_JQdx18FBEbZlZ8F4jqDs9dGq", + "first_id": "asst_RRX8UPKzesr60Vkgb5iCztm6", + "last_id": "asst_qEBp5ZgUi1oKbEot2OFKCXBm", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_JQdx18FBEbZlZ8F4jqDs9dGq", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_qEBp5ZgUi1oKbEot2OFKCXBm", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce692e6ea334-SEA", + "CF-RAY": "996e31e0ae6d08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:05 GMT", + "Date": "Thu, 30 Oct 2025 22:02:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "409", + "openai-processing-ms": "688", "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": "412", + "x-envoy-upstream-service-time": "695", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_dwJAkZcpfnrsMfOHQaHJ9qqa", + "id": "asst_KMssi71y93YGD0tGxsHiVMxN", "object": "assistant", - "created_at": 1758061797, + "created_at": 1761861718, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -839,12 +854,12 @@ "response_format": "auto" }, { - "id": "asst_IAIVM9sbm2n2xTAe290Ffb2G", + "id": "asst_25BrlQke77cHe97sIz7hIS7a", "object": "assistant", - "created_at": 1758061797, + "created_at": 1761861717, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -855,8 +870,8 @@ "response_format": "auto" } ], - "first_id": "asst_dwJAkZcpfnrsMfOHQaHJ9qqa", - "last_id": "asst_IAIVM9sbm2n2xTAe290Ffb2G", + "first_id": "asst_KMssi71y93YGD0tGxsHiVMxN", + "last_id": "asst_25BrlQke77cHe97sIz7hIS7a", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromBytesAsync.json b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromBytesAsync.json index 62374fd37..ab4e16354 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromBytesAsync.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromBytesAsync.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 0" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4b00c1fa334-SEA", + "CF-RAY": "996e373308f208e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:22 GMT", + "Date": "Thu, 30 Oct 2025 22:05:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "145", + "openai-processing-ms": "393", "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": "173", + "x-envoy-upstream-service-time": "401", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_MccR5WjS8z3FcqKNpYgncOba", + "id": "asst_n9hvUIUnHlImaMmyuyn1f6rt", "object": "assistant", - "created_at": 1758062062, + "created_at": 1761861942, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -57,41 +58,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 1" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4b1cd52a334-SEA", + "CF-RAY": "996e37361bed08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:22 GMT", + "Date": "Thu, 30 Oct 2025 22:05:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "306", + "openai-processing-ms": "270", "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": "349", + "x-envoy-upstream-service-time": "275", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_CaMZGY2CdCnXAaDgYwCvUraD", + "id": "asst_pDkQo1krjrlsdC63ekTCOZBJ", "object": "assistant", - "created_at": 1758062062, + "created_at": 1761861942, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -108,41 +110,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 2" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4b4780aa334-SEA", + "CF-RAY": "996e37385de008e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:23 GMT", + "Date": "Thu, 30 Oct 2025 22:05:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "403", + "openai-processing-ms": "204", "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": "419", + "x-envoy-upstream-service-time": "209", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_DIrhABOK0EODrWvLJoUwpW1W", + "id": "asst_Oedwh0jjHRhfA7c005jeFkJk", "object": "assistant", - "created_at": 1758062063, + "created_at": 1761861943, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -159,41 +162,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 3" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4b7aa9ba334-SEA", + "CF-RAY": "996e373a2f9808e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:23 GMT", + "Date": "Thu, 30 Oct 2025 22:05:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "188", + "openai-processing-ms": "419", "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": "196", + "x-envoy-upstream-service-time": "433", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_VNNDudJltlNpqrB5ZuNyQdgg", + "id": "asst_ZKtif5bbW4Ggtpx3Pn98bV6G", "object": "assistant", - "created_at": 1758062063, + "created_at": 1761861943, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -210,41 +214,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 4" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4b96c47a334-SEA", + "CF-RAY": "996e373d5a9f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:23 GMT", + "Date": "Thu, 30 Oct 2025 22:05:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "135", + "openai-processing-ms": "443", "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": "138", + "x-envoy-upstream-service-time": "449", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_8TYyZwjd2muwXXnmQxhFTU8Q", + "id": "asst_YNd2whhMZDBjhZCKMSWa1R81", "object": "assistant", - "created_at": 1758062063, + "created_at": 1761861944, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -261,41 +266,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 5" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4bacd81a334-SEA", + "CF-RAY": "996e3740bd9c08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:24 GMT", + "Date": "Thu, 30 Oct 2025 22:05:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "188", + "openai-processing-ms": "277", "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": "197", + "x-envoy-upstream-service-time": "281", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_jbOtLQvNGHyIVD1lYG25oQb3", + "id": "asst_yfn8r2dumCVpG0jtlQuRVl0F", "object": "assistant", - "created_at": 1758062063, + "created_at": 1761861944, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -312,41 +318,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 6" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4bc8f1fa334-SEA", + "CF-RAY": "996e37431fa208e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:24 GMT", + "Date": "Thu, 30 Oct 2025 22:05:45 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "131", + "openai-processing-ms": "321", "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": "136", + "x-envoy-upstream-service-time": "326", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_aO9mtdfT0vRj8r7VsOSUEil1", + "id": "asst_ucbvuef1BGLCwUTIpQEGs62a", "object": "assistant", - "created_at": 1758062064, + "created_at": 1761861945, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -363,41 +370,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 7" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4bdf843a334-SEA", + "CF-RAY": "996e3745aa1308e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:24 GMT", + "Date": "Thu, 30 Oct 2025 22:05:45 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "209", + "openai-processing-ms": "309", "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": "212", + "x-envoy-upstream-service-time": "321", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_SARMP27NvQoOrQMmRv0ssP8i", + "id": "asst_34B3plp4Hccu4XZdOVKPSXSS", "object": "assistant", - "created_at": 1758062064, + "created_at": 1761861945, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -414,41 +422,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 8" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4bfc9baa334-SEA", + "CF-RAY": "996e37482c5808e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:24 GMT", + "Date": "Thu, 30 Oct 2025 22:05:59 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "131", + "openai-processing-ms": "12037", "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": "134", + "x-envoy-upstream-service-time": "13367", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_nSGkqRgeWSyF0BeLzu3ybgNm", + "id": "asst_eHUyA2Livvl8aAKqV6U1cIGe", "object": "assistant", - "created_at": 1758062064, + "created_at": 1761861955, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -465,41 +474,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 9" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4c11ab3a334-SEA", + "CF-RAY": "996e379cba4308e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:25 GMT", + "Date": "Thu, 30 Oct 2025 22:05:59 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "215", + "openai-processing-ms": "315", "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": "218", + "x-envoy-upstream-service-time": "337", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_F0BQTjSdVolCAc0YMPVvXnar", + "id": "asst_bKnuAsJgdTFFAwp4tSosKqwG", "object": "assistant", - "created_at": 1758062065, + "created_at": 1761861959, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -517,38 +527,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4c30c2fa334-SEA", + "CF-RAY": "996e379f5ced08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:25 GMT", + "Date": "Thu, 30 Oct 2025 22:06:00 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "445", + "openai-processing-ms": "827", "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": "449", + "x-envoy-upstream-service-time": "833", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_F0BQTjSdVolCAc0YMPVvXnar", + "id": "asst_bKnuAsJgdTFFAwp4tSosKqwG", "object": "assistant", - "created_at": 1758062065, + "created_at": 1761861959, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -559,12 +570,12 @@ "response_format": "auto" }, { - "id": "asst_nSGkqRgeWSyF0BeLzu3ybgNm", + "id": "asst_eHUyA2Livvl8aAKqV6U1cIGe", "object": "assistant", - "created_at": 1758062064, + "created_at": 1761861955, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -575,50 +586,51 @@ "response_format": "auto" } ], - "first_id": "asst_F0BQTjSdVolCAc0YMPVvXnar", - "last_id": "asst_nSGkqRgeWSyF0BeLzu3ybgNm", + "first_id": "asst_bKnuAsJgdTFFAwp4tSosKqwG", + "last_id": "asst_eHUyA2Livvl8aAKqV6U1cIGe", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_nSGkqRgeWSyF0BeLzu3ybgNm", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_eHUyA2Livvl8aAKqV6U1cIGe", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4c67f55a334-SEA", + "CF-RAY": "996e37a51a3508e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:26 GMT", + "Date": "Thu, 30 Oct 2025 22:06:01 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "432", + "openai-processing-ms": "1348", "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": "436", + "x-envoy-upstream-service-time": "1357", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_SARMP27NvQoOrQMmRv0ssP8i", + "id": "asst_34B3plp4Hccu4XZdOVKPSXSS", "object": "assistant", - "created_at": 1758062064, + "created_at": 1761861945, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -629,12 +641,12 @@ "response_format": "auto" }, { - "id": "asst_aO9mtdfT0vRj8r7VsOSUEil1", + "id": "asst_ucbvuef1BGLCwUTIpQEGs62a", "object": "assistant", - "created_at": 1758062064, + "created_at": 1761861945, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -645,50 +657,51 @@ "response_format": "auto" } ], - "first_id": "asst_SARMP27NvQoOrQMmRv0ssP8i", - "last_id": "asst_aO9mtdfT0vRj8r7VsOSUEil1", + "first_id": "asst_34B3plp4Hccu4XZdOVKPSXSS", + "last_id": "asst_ucbvuef1BGLCwUTIpQEGs62a", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_aO9mtdfT0vRj8r7VsOSUEil1", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_ucbvuef1BGLCwUTIpQEGs62a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4c9ba44a334-SEA", + "CF-RAY": "996e37ae2bf708e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:26 GMT", + "Date": "Thu, 30 Oct 2025 22:06:02 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "573", + "openai-processing-ms": "371", "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": "587", + "x-envoy-upstream-service-time": "374", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_jbOtLQvNGHyIVD1lYG25oQb3", + "id": "asst_yfn8r2dumCVpG0jtlQuRVl0F", "object": "assistant", - "created_at": 1758062063, + "created_at": 1761861944, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -699,12 +712,12 @@ "response_format": "auto" }, { - "id": "asst_8TYyZwjd2muwXXnmQxhFTU8Q", + "id": "asst_YNd2whhMZDBjhZCKMSWa1R81", "object": "assistant", - "created_at": 1758062063, + "created_at": 1761861944, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -715,50 +728,51 @@ "response_format": "auto" } ], - "first_id": "asst_jbOtLQvNGHyIVD1lYG25oQb3", - "last_id": "asst_8TYyZwjd2muwXXnmQxhFTU8Q", + "first_id": "asst_yfn8r2dumCVpG0jtlQuRVl0F", + "last_id": "asst_YNd2whhMZDBjhZCKMSWa1R81", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_8TYyZwjd2muwXXnmQxhFTU8Q", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_YNd2whhMZDBjhZCKMSWa1R81", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4cdfefaa334-SEA", + "CF-RAY": "996e37b0ff0808e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:27 GMT", + "Date": "Thu, 30 Oct 2025 22:06:03 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "369", + "openai-processing-ms": "778", "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": "372", + "x-envoy-upstream-service-time": "782", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_VNNDudJltlNpqrB5ZuNyQdgg", + "id": "asst_ZKtif5bbW4Ggtpx3Pn98bV6G", "object": "assistant", - "created_at": 1758062063, + "created_at": 1761861943, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -769,12 +783,12 @@ "response_format": "auto" }, { - "id": "asst_DIrhABOK0EODrWvLJoUwpW1W", + "id": "asst_Oedwh0jjHRhfA7c005jeFkJk", "object": "assistant", - "created_at": 1758062063, + "created_at": 1761861943, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -785,50 +799,51 @@ "response_format": "auto" } ], - "first_id": "asst_VNNDudJltlNpqrB5ZuNyQdgg", - "last_id": "asst_DIrhABOK0EODrWvLJoUwpW1W", + "first_id": "asst_ZKtif5bbW4Ggtpx3Pn98bV6G", + "last_id": "asst_Oedwh0jjHRhfA7c005jeFkJk", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_DIrhABOK0EODrWvLJoUwpW1W", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_Oedwh0jjHRhfA7c005jeFkJk", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4d0d9efa334-SEA", + "CF-RAY": "996e37b66bd608e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:28 GMT", + "Date": "Thu, 30 Oct 2025 22:06:03 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "599", + "openai-processing-ms": "572", "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": "602", + "x-envoy-upstream-service-time": "578", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_CaMZGY2CdCnXAaDgYwCvUraD", + "id": "asst_pDkQo1krjrlsdC63ekTCOZBJ", "object": "assistant", - "created_at": 1758062062, + "created_at": 1761861942, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -839,12 +854,12 @@ "response_format": "auto" }, { - "id": "asst_MccR5WjS8z3FcqKNpYgncOba", + "id": "asst_n9hvUIUnHlImaMmyuyn1f6rt", "object": "assistant", - "created_at": 1758062062, + "created_at": 1761861942, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -855,8 +870,8 @@ "response_format": "auto" } ], - "first_id": "asst_CaMZGY2CdCnXAaDgYwCvUraD", - "last_id": "asst_MccR5WjS8z3FcqKNpYgncOba", + "first_id": "asst_pDkQo1krjrlsdC63ekTCOZBJ", + "last_id": "asst_n9hvUIUnHlImaMmyuyn1f6rt", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromPageToken.json b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromPageToken.json index 7960b3c35..999929874 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromPageToken.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromPageToken.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 0" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce6cc92aa334-SEA", + "CF-RAY": "996e31e5db9808e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:05 GMT", + "Date": "Thu, 30 Oct 2025 22:02:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "174", + "openai-processing-ms": "243", "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": "182", + "x-envoy-upstream-service-time": "249", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_cvGGM9wif2ocFWOI1ieG9hkj", + "id": "asst_DWJdFiJnLTV4wZzlvfNOuZc4", "object": "assistant", - "created_at": 1758061805, + "created_at": 1761861725, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -57,41 +58,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 1" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce6e8a92a334-SEA", + "CF-RAY": "996e31e7fdd208e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:06 GMT", + "Date": "Thu, 30 Oct 2025 22:02:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "254", + "openai-processing-ms": "278", "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": "257", + "x-envoy-upstream-service-time": "283", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_yvNiMAae6yTmuEVPMz9snqsH", + "id": "asst_7AJEcWLatjipgsrxqu4RMH4J", "object": "assistant", - "created_at": 1758061806, + "created_at": 1761861725, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -108,41 +110,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 2" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce70ac2ca334-SEA", + "CF-RAY": "996e31ea883608e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:06 GMT", + "Date": "Thu, 30 Oct 2025 22:02:08 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "132", + "openai-processing-ms": "2449", "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": "136", + "x-envoy-upstream-service-time": "2456", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_yzFTOn1VeyjnieeF2Qt4y5XL", + "id": "asst_TM1U1ouKLjg3XLz6flPfSBPO", "object": "assistant", - "created_at": 1758061806, + "created_at": 1761861728, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -159,41 +162,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 3" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce720d14a334-SEA", + "CF-RAY": "996e31fa79e908e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:06 GMT", + "Date": "Thu, 30 Oct 2025 22:02:08 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "251", + "openai-processing-ms": "432", "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": "255", + "x-envoy-upstream-service-time": "439", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_LV5QaWYYdnI528HDwkkPCPgF", + "id": "asst_O4TXtueXkzjyUyYkuqLeRtqO", "object": "assistant", - "created_at": 1758061806, + "created_at": 1761861728, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -210,41 +214,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 4" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce742ec3a334-SEA", + "CF-RAY": "996e31fdbd2608e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:06 GMT", + "Date": "Thu, 30 Oct 2025 22:02:10 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "119", + "openai-processing-ms": "1049", "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": "122", + "x-envoy-upstream-service-time": "1171", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_OI5ogJCqqnl7J9ikQ9S1cGIk", + "id": "asst_TudALetD3s5aR8Csi9DAgr54", "object": "assistant", - "created_at": 1758061806, + "created_at": 1761861729, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -261,41 +266,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 5" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce756fe5a334-SEA", + "CF-RAY": "996e3205ce5008e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:07 GMT", + "Date": "Thu, 30 Oct 2025 22:02:11 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "204", + "openai-processing-ms": "882", "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": "212", + "x-envoy-upstream-service-time": "977", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_wxmWJ5pClFYQCROpcJYGga9a", + "id": "asst_8Xr9wWMLR4ET94PLOom4pTeV", "object": "assistant", - "created_at": 1758061807, + "created_at": 1761861731, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -312,41 +318,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 6" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce774951a334-SEA", + "CF-RAY": "996e320c8d5208e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:07 GMT", + "Date": "Thu, 30 Oct 2025 22:02:11 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "214", + "openai-processing-ms": "475", "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": "217", + "x-envoy-upstream-service-time": "486", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_WZnxA7IDGvsuu7zansaqh7I1", + "id": "asst_gEldtAPR1MlRyGzKGeTqJNey", "object": "assistant", - "created_at": 1758061807, + "created_at": 1761861731, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -363,41 +370,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 7" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce792aa6a334-SEA", + "CF-RAY": "996e32103a1708e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:07 GMT", + "Date": "Thu, 30 Oct 2025 22:02:12 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "199", + "openai-processing-ms": "208", "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": "202", + "x-envoy-upstream-service-time": "219", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_sXVZlpxIwSmDHNhpvr4kSQkP", + "id": "asst_GoKGFpPsi3JZw0241AzNJgd0", "object": "assistant", - "created_at": 1758061807, + "created_at": 1761861732, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -414,41 +422,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 8" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce7b4c2da334-SEA", + "CF-RAY": "996e32124ca908e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:08 GMT", + "Date": "Thu, 30 Oct 2025 22:02:12 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "373", + "openai-processing-ms": "182", "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": "385", + "x-envoy-upstream-service-time": "185", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_tDVBoTfCfqkaLWJbYVrGIROC", + "id": "asst_PkcrdWfrF9gwjzaPY30oUQWe", "object": "assistant", - "created_at": 1758061808, + "created_at": 1761861732, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -465,41 +474,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 9" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ce7e5e87a334-SEA", + "CF-RAY": "996e3213ff4108e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:08 GMT", + "Date": "Thu, 30 Oct 2025 22:02:12 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "165", + "openai-processing-ms": "198", "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": "168", + "x-envoy-upstream-service-time": "202", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_QsyXlfbEx2g8ubqDCcq58Vn3", + "id": "asst_7QEyYMThqWvo58EDVwuoyp7T", "object": "assistant", - "created_at": 1758061808, + "created_at": 1761861732, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -517,38 +527,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce80183fa334-SEA", + "CF-RAY": "996e3215c99f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:09 GMT", + "Date": "Thu, 30 Oct 2025 22:02:13 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "508", + "openai-processing-ms": "416", "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": "511", + "x-envoy-upstream-service-time": "420", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_QsyXlfbEx2g8ubqDCcq58Vn3", + "id": "asst_7QEyYMThqWvo58EDVwuoyp7T", "object": "assistant", - "created_at": 1758061808, + "created_at": 1761861732, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -559,12 +570,12 @@ "response_format": "auto" }, { - "id": "asst_tDVBoTfCfqkaLWJbYVrGIROC", + "id": "asst_PkcrdWfrF9gwjzaPY30oUQWe", "object": "assistant", - "created_at": 1758061808, + "created_at": 1761861732, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -575,50 +586,51 @@ "response_format": "auto" } ], - "first_id": "asst_QsyXlfbEx2g8ubqDCcq58Vn3", - "last_id": "asst_tDVBoTfCfqkaLWJbYVrGIROC", + "first_id": "asst_7QEyYMThqWvo58EDVwuoyp7T", + "last_id": "asst_PkcrdWfrF9gwjzaPY30oUQWe", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_tDVBoTfCfqkaLWJbYVrGIROC", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_PkcrdWfrF9gwjzaPY30oUQWe", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce83fca6a334-SEA", + "CF-RAY": "996e32190d3508e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:09 GMT", + "Date": "Thu, 30 Oct 2025 22:02:14 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "492", + "openai-processing-ms": "553", "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": "497", + "x-envoy-upstream-service-time": "565", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_sXVZlpxIwSmDHNhpvr4kSQkP", + "id": "asst_GoKGFpPsi3JZw0241AzNJgd0", "object": "assistant", - "created_at": 1758061807, + "created_at": 1761861732, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -629,12 +641,12 @@ "response_format": "auto" }, { - "id": "asst_WZnxA7IDGvsuu7zansaqh7I1", + "id": "asst_gEldtAPR1MlRyGzKGeTqJNey", "object": "assistant", - "created_at": 1758061807, + "created_at": 1761861731, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -645,50 +657,51 @@ "response_format": "auto" } ], - "first_id": "asst_sXVZlpxIwSmDHNhpvr4kSQkP", - "last_id": "asst_WZnxA7IDGvsuu7zansaqh7I1", + "first_id": "asst_GoKGFpPsi3JZw0241AzNJgd0", + "last_id": "asst_gEldtAPR1MlRyGzKGeTqJNey", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_WZnxA7IDGvsuu7zansaqh7I1", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_gEldtAPR1MlRyGzKGeTqJNey", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce87afaea334-SEA", + "CF-RAY": "996e321dda3908e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:10 GMT", + "Date": "Thu, 30 Oct 2025 22:02:14 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "437", + "openai-processing-ms": "556", "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": "443", + "x-envoy-upstream-service-time": "561", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_wxmWJ5pClFYQCROpcJYGga9a", + "id": "asst_8Xr9wWMLR4ET94PLOom4pTeV", "object": "assistant", - "created_at": 1758061807, + "created_at": 1761861731, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -699,12 +712,12 @@ "response_format": "auto" }, { - "id": "asst_OI5ogJCqqnl7J9ikQ9S1cGIk", + "id": "asst_TudALetD3s5aR8Csi9DAgr54", "object": "assistant", - "created_at": 1758061806, + "created_at": 1761861729, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -715,50 +728,51 @@ "response_format": "auto" } ], - "first_id": "asst_wxmWJ5pClFYQCROpcJYGga9a", - "last_id": "asst_OI5ogJCqqnl7J9ikQ9S1cGIk", + "first_id": "asst_8Xr9wWMLR4ET94PLOom4pTeV", + "last_id": "asst_TudALetD3s5aR8Csi9DAgr54", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_OI5ogJCqqnl7J9ikQ9S1cGIk", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_TudALetD3s5aR8Csi9DAgr54", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce8afa5ea334-SEA", + "CF-RAY": "996e3221fe9a08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:10 GMT", + "Date": "Thu, 30 Oct 2025 22:02:15 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "518", + "openai-processing-ms": "485", "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": "521", + "x-envoy-upstream-service-time": "488", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_LV5QaWYYdnI528HDwkkPCPgF", + "id": "asst_O4TXtueXkzjyUyYkuqLeRtqO", "object": "assistant", - "created_at": 1758061806, + "created_at": 1761861728, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -769,12 +783,12 @@ "response_format": "auto" }, { - "id": "asst_yzFTOn1VeyjnieeF2Qt4y5XL", + "id": "asst_TM1U1ouKLjg3XLz6flPfSBPO", "object": "assistant", - "created_at": 1758061806, + "created_at": 1761861728, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -785,50 +799,51 @@ "response_format": "auto" } ], - "first_id": "asst_LV5QaWYYdnI528HDwkkPCPgF", - "last_id": "asst_yzFTOn1VeyjnieeF2Qt4y5XL", + "first_id": "asst_O4TXtueXkzjyUyYkuqLeRtqO", + "last_id": "asst_TM1U1ouKLjg3XLz6flPfSBPO", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_yzFTOn1VeyjnieeF2Qt4y5XL", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_TM1U1ouKLjg3XLz6flPfSBPO", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803ce8ebd4aa334-SEA", + "CF-RAY": "996e32258a5908e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:30:11 GMT", + "Date": "Thu, 30 Oct 2025 22:02:15 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "559", + "openai-processing-ms": "599", "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": "573", + "x-envoy-upstream-service-time": "603", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_yvNiMAae6yTmuEVPMz9snqsH", + "id": "asst_7AJEcWLatjipgsrxqu4RMH4J", "object": "assistant", - "created_at": 1758061806, + "created_at": 1761861725, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -839,12 +854,12 @@ "response_format": "auto" }, { - "id": "asst_cvGGM9wif2ocFWOI1ieG9hkj", + "id": "asst_DWJdFiJnLTV4wZzlvfNOuZc4", "object": "assistant", - "created_at": 1758061805, + "created_at": 1761861725, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -855,8 +870,8 @@ "response_format": "auto" } ], - "first_id": "asst_yvNiMAae6yTmuEVPMz9snqsH", - "last_id": "asst_cvGGM9wif2ocFWOI1ieG9hkj", + "first_id": "asst_7AJEcWLatjipgsrxqu4RMH4J", + "last_id": "asst_DWJdFiJnLTV4wZzlvfNOuZc4", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromPageTokenAsync.json b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromPageTokenAsync.json index e92e3a074..e170f27f1 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromPageTokenAsync.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateAssistantPageCollectionFromPageTokenAsync.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 0" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4d58ee6a334-SEA", + "CF-RAY": "996e37bae82a08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:28 GMT", + "Date": "Thu, 30 Oct 2025 22:06:04 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "203", + "openai-processing-ms": "301", "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": "212", + "x-envoy-upstream-service-time": "304", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_a8DqVLFO05G42fAZbnmXrsiS", + "id": "asst_ABE2My8HJe69pqsC0mVWJ8CA", "object": "assistant", - "created_at": 1758062068, + "created_at": 1761861964, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -57,41 +58,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 1" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4d758a9a334-SEA", + "CF-RAY": "996e37bd5ab008e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:28 GMT", + "Date": "Thu, 30 Oct 2025 22:06:04 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "212", + "openai-processing-ms": "288", "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": "215", + "x-envoy-upstream-service-time": "301", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_Z5qauO9O2OY9Czjlm9XdJ6xE", + "id": "asst_XN0PD4wE11esNtrcyXqxNZYx", "object": "assistant", - "created_at": 1758062068, + "created_at": 1761861964, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -108,41 +110,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 2" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4d95a3ea334-SEA", + "CF-RAY": "996e37bfbcf108e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:28 GMT", + "Date": "Thu, 30 Oct 2025 22:06:35 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "126", + "openai-processing-ms": "28059", "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": "128", + "x-envoy-upstream-service-time": "30486", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_xHkhD7PCSAGsPESEMBWTt43x", + "id": "asst_w2hceSGjfmZr170I8ZYxIj0m", "object": "assistant", - "created_at": 1758062068, + "created_at": 1761861992, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -159,41 +162,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 3" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4daab1da334-SEA", + "CF-RAY": "996e387fe9cd08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:29 GMT", + "Date": "Thu, 30 Oct 2025 22:06:35 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "302", + "openai-processing-ms": "194", "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": "310", + "x-envoy-upstream-service-time": "197", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_frxFh0RfDOWcFqcHsUW1HwVz", + "id": "asst_dNXXtOVGgAogfKKqfK3ANqhy", "object": "assistant", - "created_at": 1758062069, + "created_at": 1761861995, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -210,41 +214,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 4" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4dd2d78a334-SEA", + "CF-RAY": "996e3881abad08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:29 GMT", + "Date": "Thu, 30 Oct 2025 22:06:36 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "231", + "openai-processing-ms": "311", "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": "246", + "x-envoy-upstream-service-time": "316", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_t2GyI0psowJBZNgXywL0qeYv", + "id": "asst_PuBJ1W3KpUdKFfUXieTBM5bA", "object": "assistant", - "created_at": 1758062069, + "created_at": 1761861996, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -261,41 +266,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 5" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4df3f54a334-SEA", + "CF-RAY": "996e38843e4408e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:29 GMT", + "Date": "Thu, 30 Oct 2025 22:06:36 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "140", + "openai-processing-ms": "314", "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": "144", + "x-envoy-upstream-service-time": "317", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_m4BT681oY7Q4JyojkZrYRrrr", + "id": "asst_KGoUeyuvN1j8wpEwHh1TnoOI", "object": "assistant", - "created_at": 1758062069, + "created_at": 1761861996, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -312,41 +318,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 6" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4e0a8b2a334-SEA", + "CF-RAY": "996e3886a8a308e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:30 GMT", + "Date": "Thu, 30 Oct 2025 22:06:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "176", + "openai-processing-ms": "345", "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": "179", + "x-envoy-upstream-service-time": "348", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_zJTfQoDcGqewO7TfvTf9yV5X", + "id": "asst_UISDn92ZcbEF5oEk6lAGDivq", "object": "assistant", - "created_at": 1758062070, + "created_at": 1761861996, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -363,41 +370,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 7" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4e24a09a334-SEA", + "CF-RAY": "996e38896b0b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:30 GMT", + "Date": "Thu, 30 Oct 2025 22:06:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "252", + "openai-processing-ms": "275", "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": "290", + "x-envoy-upstream-service-time": "279", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_rPH96pBfPtrbYweEkaoDgdCN", + "id": "asst_AoHPPSLFA23zBOHX5EpmaaKE", "object": "assistant", - "created_at": 1758062070, + "created_at": 1761861997, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -414,41 +422,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 8" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4e49bfea334-SEA", + "CF-RAY": "996e388bbd2b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:30 GMT", + "Date": "Thu, 30 Oct 2025 22:06:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "206", + "openai-processing-ms": "329", "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": "222", + "x-envoy-upstream-service-time": "335", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_lKr8Ui2bh8mGWlzBNwv6ISSG", + "id": "asst_fLwQqnXYzPmsQWe4LodI2UPM", "object": "assistant", - "created_at": 1758062070, + "created_at": 1761861997, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -465,41 +474,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "49", + "Content-Length": "44", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "name": "Test Assistant 9" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d4e68daaa334-SEA", + "CF-RAY": "996e388e6f6708e3-SEA", "Connection": "keep-alive", - "Content-Length": "351", + "Content-Length": "346", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:31 GMT", + "Date": "Thu, 30 Oct 2025 22:06:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "423", + "openai-processing-ms": "363", "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": "435", + "x-envoy-upstream-service-time": "366", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_qCyVei4acQE7OBFQ8AnDM0A4", + "id": "asst_rhm9kIIIwbRmotRDL2EGivGq", "object": "assistant", - "created_at": 1758062071, + "created_at": 1761861998, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -517,38 +527,39 @@ "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4e9c88ba334-SEA", + "CF-RAY": "996e389139b408e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:31 GMT", + "Date": "Thu, 30 Oct 2025 22:06:38 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "460", + "openai-processing-ms": "572", "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": "465", + "x-envoy-upstream-service-time": "577", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_qCyVei4acQE7OBFQ8AnDM0A4", + "id": "asst_rhm9kIIIwbRmotRDL2EGivGq", "object": "assistant", - "created_at": 1758062071, + "created_at": 1761861998, "name": "Test Assistant 9", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -559,12 +570,12 @@ "response_format": "auto" }, { - "id": "asst_lKr8Ui2bh8mGWlzBNwv6ISSG", + "id": "asst_fLwQqnXYzPmsQWe4LodI2UPM", "object": "assistant", - "created_at": 1758062070, + "created_at": 1761861997, "name": "Test Assistant 8", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -575,50 +586,51 @@ "response_format": "auto" } ], - "first_id": "asst_qCyVei4acQE7OBFQ8AnDM0A4", - "last_id": "asst_lKr8Ui2bh8mGWlzBNwv6ISSG", + "first_id": "asst_rhm9kIIIwbRmotRDL2EGivGq", + "last_id": "asst_fLwQqnXYzPmsQWe4LodI2UPM", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_lKr8Ui2bh8mGWlzBNwv6ISSG", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_fLwQqnXYzPmsQWe4LodI2UPM", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4ed2bc3a334-SEA", + "CF-RAY": "996e38955d3908e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:32 GMT", + "Date": "Thu, 30 Oct 2025 22:06:39 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "506", + "openai-processing-ms": "927", "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": "509", + "x-envoy-upstream-service-time": "933", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_rPH96pBfPtrbYweEkaoDgdCN", + "id": "asst_AoHPPSLFA23zBOHX5EpmaaKE", "object": "assistant", - "created_at": 1758062070, + "created_at": 1761861997, "name": "Test Assistant 7", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -629,12 +641,12 @@ "response_format": "auto" }, { - "id": "asst_zJTfQoDcGqewO7TfvTf9yV5X", + "id": "asst_UISDn92ZcbEF5oEk6lAGDivq", "object": "assistant", - "created_at": 1758062070, + "created_at": 1761861996, "name": "Test Assistant 6", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -645,30 +657,30 @@ "response_format": "auto" } ], - "first_id": "asst_rPH96pBfPtrbYweEkaoDgdCN", - "last_id": "asst_zJTfQoDcGqewO7TfvTf9yV5X", + "first_id": "asst_AoHPPSLFA23zBOHX5EpmaaKE", + "last_id": "asst_UISDn92ZcbEF5oEk6lAGDivq", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_zJTfQoDcGqewO7TfvTf9yV5X", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_UISDn92ZcbEF5oEk6lAGDivq", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4f0de8fa334-SEA", + "CF-RAY": "996e389bca9b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:33 GMT", + "Date": "Thu, 30 Oct 2025 22:06:40 GMT", "openai-organization": "Sanitized", "openai-processing-ms": "570", "openai-project": "Sanitized", @@ -676,19 +688,20 @@ "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "573", + "x-envoy-upstream-service-time": "575", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_m4BT681oY7Q4JyojkZrYRrrr", + "id": "asst_KGoUeyuvN1j8wpEwHh1TnoOI", "object": "assistant", - "created_at": 1758062069, + "created_at": 1761861996, "name": "Test Assistant 5", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -699,12 +712,12 @@ "response_format": "auto" }, { - "id": "asst_t2GyI0psowJBZNgXywL0qeYv", + "id": "asst_PuBJ1W3KpUdKFfUXieTBM5bA", "object": "assistant", - "created_at": 1758062069, + "created_at": 1761861996, "name": "Test Assistant 4", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -715,50 +728,51 @@ "response_format": "auto" } ], - "first_id": "asst_m4BT681oY7Q4JyojkZrYRrrr", - "last_id": "asst_t2GyI0psowJBZNgXywL0qeYv", + "first_id": "asst_KGoUeyuvN1j8wpEwHh1TnoOI", + "last_id": "asst_PuBJ1W3KpUdKFfUXieTBM5bA", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_t2GyI0psowJBZNgXywL0qeYv", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_PuBJ1W3KpUdKFfUXieTBM5bA", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4f4fab5a334-SEA", + "CF-RAY": "996e38a00ea108e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:33 GMT", + "Date": "Thu, 30 Oct 2025 22:06:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "496", + "openai-processing-ms": "731", "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": "500", + "x-envoy-upstream-service-time": "763", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_frxFh0RfDOWcFqcHsUW1HwVz", + "id": "asst_dNXXtOVGgAogfKKqfK3ANqhy", "object": "assistant", - "created_at": 1758062069, + "created_at": 1761861995, "name": "Test Assistant 3", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -769,12 +783,12 @@ "response_format": "auto" }, { - "id": "asst_xHkhD7PCSAGsPESEMBWTt43x", + "id": "asst_w2hceSGjfmZr170I8ZYxIj0m", "object": "assistant", - "created_at": 1758062068, + "created_at": 1761861992, "name": "Test Assistant 2", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -785,50 +799,51 @@ "response_format": "auto" } ], - "first_id": "asst_frxFh0RfDOWcFqcHsUW1HwVz", - "last_id": "asst_xHkhD7PCSAGsPESEMBWTt43x", + "first_id": "asst_dNXXtOVGgAogfKKqfK3ANqhy", + "last_id": "asst_w2hceSGjfmZr170I8ZYxIj0m", "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_xHkhD7PCSAGsPESEMBWTt43x", + "RequestUri": "https://api.openai.com/v1/assistants?limit=2&order=desc&after=asst_w2hceSGjfmZr170I8ZYxIj0m", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d4f89ecea334-SEA", + "CF-RAY": "996e38a56b7108e3-SEA", "Connection": "keep-alive", - "Content-Length": "985", + "Content-Length": "975", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:34:34 GMT", + "Date": "Thu, 30 Oct 2025 22:06:41 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "526", + "openai-processing-ms": "397", "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": "531", + "x-envoy-upstream-service-time": "400", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "asst_Z5qauO9O2OY9Czjlm9XdJ6xE", + "id": "asst_XN0PD4wE11esNtrcyXqxNZYx", "object": "assistant", - "created_at": 1758062068, + "created_at": 1761861964, "name": "Test Assistant 1", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -839,12 +854,12 @@ "response_format": "auto" }, { - "id": "asst_a8DqVLFO05G42fAZbnmXrsiS", + "id": "asst_ABE2My8HJe69pqsC0mVWJ8CA", "object": "assistant", - "created_at": 1758062068, + "created_at": 1761861964, "name": "Test Assistant 0", "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -855,8 +870,8 @@ "response_format": "auto" } ], - "first_id": "asst_Z5qauO9O2OY9Czjlm9XdJ6xE", - "last_id": "asst_a8DqVLFO05G42fAZbnmXrsiS", + "first_id": "asst_XN0PD4wE11esNtrcyXqxNZYx", + "last_id": "asst_ABE2My8HJe69pqsC0mVWJ8CA", "has_more": true } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateRunStepPageCollectionFromBytes.json b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateRunStepPageCollectionFromBytes.json index 5b5f4bb7a..db869aba2 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateRunStepPageCollectionFromBytes.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateRunStepPageCollectionFromBytes.json @@ -9,7 +9,7 @@ "Content-Length": "142", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "model": "gpt-4o", @@ -24,25 +24,30 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e3c739ffa354-SEA", + "CF-RAY": "996e3b2e883024e6-SEA", "Connection": "keep-alive", "Content-Length": "502", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:40 GMT", + "Date": "Thu, 30 Oct 2025 22:08:28 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "274", + "openai-processing-ms": "2713", "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": "278", + "x-envoy-upstream-service-time": "2726", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", + "id": "asst_v2RC31cm58wuQA4V75TcJC9G", "object": "assistant", - "created_at": 1758062680, + "created_at": 1761862108, "name": null, "description": null, "model": "gpt-4o", @@ -71,8 +76,8 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "440", - "Content-Type": "multipart/form-data; boundary=\"oBaggKM54Gmqy309EMvCOCxJCwEtz=LJ1k4drVERyrS4bjbKGTouF9NO5KxjeYFrnHYeVp\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"Vriiv4oIqnstdcuAsiw=F7Q8CPWkyKZA3novoWISsgvrcPR=BfHXN3MS7pttvHsIzI1K67\"", + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, @@ -80,29 +85,29 @@ "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e3c99bdea354-SEA", + "CF-RAY": "996e3b408fbe24e6-SEA", "Connection": "keep-alive", "Content-Length": "231", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:41 GMT", + "Date": "Thu, 30 Oct 2025 22:08:28 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1124", + "openai-processing-ms": "369", "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": "1134", + "x-envoy-upstream-service-time": "384", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-GrwsDPTwJSeEmq8P2VRu71", + "id": "file-F4uZ2anSBwSE4JfFTEg7W6", "purpose": "assistants", "filename": "text/csv", "bytes": 18, - "created_at": 1758062680, + "created_at": 1761862108, "expires_at": null, "status": "processed", "status_details": null @@ -117,7 +122,7 @@ "Content-Length": "293", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -129,7 +134,7 @@ "tool_resources": { "code_interpreter": { "file_ids": [ - "file-GrwsDPTwJSeEmq8P2VRu71" + "file-F4uZ2anSBwSE4JfFTEg7W6" ] } } @@ -138,37 +143,38 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e3d13a76a354-SEA", + "CF-RAY": "996e3b440c5424e6-SEA", "Connection": "keep-alive", "Content-Length": "238", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:43 GMT", + "Date": "Thu, 30 Oct 2025 22:08:30 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1317", + "openai-processing-ms": "1285", "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": "1320", + "x-envoy-upstream-service-time": "1288", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", + "id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", "object": "thread", - "created_at": 1758062681, + "created_at": 1761862108, "metadata": {}, "tool_resources": { "code_interpreter": { "file_ids": [ - "file-GrwsDPTwJSeEmq8P2VRu71" + "file-F4uZ2anSBwSE4JfFTEg7W6" ] } } } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -176,40 +182,41 @@ "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", "additional_messages": [] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e3da4ad9a354-SEA", + "CF-RAY": "996e3b4cbe9e24e6-SEA", "Connection": "keep-alive", "Content-Length": "941", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:45 GMT", + "Date": "Thu, 30 Oct 2025 22:08:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "2005", + "openai-processing-ms": "1171", "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": "2035", + "x-envoy-upstream-service-time": "1177", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", + "id": "run_LAndsmZANdPllF1ZTmzt1tDc", "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", + "created_at": 1761862110, + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", "status": "queued", "started_at": null, - "expires_at": 1758063283, + "expires_at": 1761862710, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -241,43 +248,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e3edeccda354-SEA", + "CF-RAY": "996e3b5aff2e24e6-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "941", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:46 GMT", + "Date": "Thu, 30 Oct 2025 22:08:32 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "178", + "openai-processing-ms": "246", "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": "185", + "x-envoy-upstream-service-time": "253", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", + "id": "run_LAndsmZANdPllF1ZTmzt1tDc", "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, + "created_at": 1761862110, + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", + "status": "queued", + "started_at": null, + "expires_at": 1761862710, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -309,43 +317,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e3f68ccfa354-SEA", + "CF-RAY": "996e3b63782224e6-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:54 GMT", + "Date": "Thu, 30 Oct 2025 22:08:34 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "5798", + "openai-processing-ms": "220", "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": "6346", + "x-envoy-upstream-service-time": "226", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", + "id": "run_LAndsmZANdPllF1ZTmzt1tDc", "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", + "created_at": 1761862110, + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, + "started_at": 1761862112, + "expires_at": 1761862710, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -377,43 +386,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e425d889a354-SEA", + "CF-RAY": "996e3b6bc81e24e6-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:55 GMT", + "Date": "Thu, 30 Oct 2025 22:08:35 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "168", + "openai-processing-ms": "150", "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": "174", + "x-envoy-upstream-service-time": "153", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", + "id": "run_LAndsmZANdPllF1ZTmzt1tDc", "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", + "created_at": 1761862110, + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, + "started_at": 1761862112, + "expires_at": 1761862710, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -445,43 +455,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e42dcf14a354-SEA", + "CF-RAY": "996e3b739fd124e6-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:57 GMT", + "Date": "Thu, 30 Oct 2025 22:08:37 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "397", + "openai-processing-ms": "1246", "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": "407", + "x-envoy-upstream-service-time": "1366", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", + "id": "run_LAndsmZANdPllF1ZTmzt1tDc", "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", + "created_at": 1761862110, + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, + "started_at": 1761862112, + "expires_at": 1761862710, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -513,43 +524,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e4373ddca354-SEA", + "CF-RAY": "996e3b830f0024e6-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:58 GMT", + "Date": "Thu, 30 Oct 2025 22:08:40 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "205", + "openai-processing-ms": "1441", "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": "217", + "x-envoy-upstream-service-time": "1637", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", + "id": "run_LAndsmZANdPllF1ZTmzt1tDc", "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", + "created_at": 1761862110, + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, + "started_at": 1761862112, + "expires_at": 1761862710, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -581,43 +593,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e43f6c01a354-SEA", + "CF-RAY": "996e3b94582c24e6-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:44:59 GMT", + "Date": "Thu, 30 Oct 2025 22:08:45 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "310", + "openai-processing-ms": "3307", "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": "316", + "x-envoy-upstream-service-time": "3722", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", + "id": "run_LAndsmZANdPllF1ZTmzt1tDc", "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", + "created_at": 1761862110, + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, + "started_at": 1761862112, + "expires_at": 1761862710, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -649,46 +662,47 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e4484a71a354-SEA", + "CF-RAY": "996e3bb3afc024e6-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "1165", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:01 GMT", + "Date": "Thu, 30 Oct 2025 22:08:46 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "181", + "openai-processing-ms": "136", "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": "185", + "x-envoy-upstream-service-time": "139", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", + "id": "run_LAndsmZANdPllF1ZTmzt1tDc", "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, + "created_at": 1761862110, + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", + "status": "completed", + "started_at": 1761862112, + "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": null, + "completed_at": 1761862124, "required_action": null, "last_error": null, "model": "gpt-4o", @@ -710,1788 +724,370 @@ "last_messages": null }, "incomplete_details": null, - "usage": null, + "usage": { + "prompt_tokens": 1021, + "completion_tokens": 262, + "total_tokens": 1283, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + }, "response_format": "auto", "tool_choice": "auto", "parallel_tool_calls": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc/steps?limit=2&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e450385ba354-SEA", + "CF-RAY": "996e3bb5294e24e6-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "2753", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:02 GMT", + "Date": "Thu, 30 Oct 2025 22:08:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "325", + "openai-processing-ms": "65", "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": "345", + "x-envoy-upstream-service-time": "69", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ + "object": "list", + "data": [ { - "type": "code_interpreter" + "id": "step_E7Jy0WVhzBBTUYIlV27GM9aa", + "object": "thread.run.step", + "created_at": 1761862123, + "run_id": "run_LAndsmZANdPllF1ZTmzt1tDc", + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862124, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_XxJukKoiwKRDwffiFxPT0vYo" + } + }, + "usage": { + "prompt_tokens": 519, + "completion_tokens": 67, + "total_tokens": 586, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_HfDCkwWjZTOsQyG4LOqEWD9u", + "object": "thread.run.step", + "created_at": 1761862116, + "run_id": "run_LAndsmZANdPllF1ZTmzt1tDc", + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", + "type": "tool_calls", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862123, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "tool_calls", + "tool_calls": [ + { + "id": "call_16BMqUcacKJfdO1DjMBV6R3N", + "type": "code_interpreter", + "code_interpreter": { + "input": "# Import necessary library\nimport pandas as pd\n\n# Load the uploaded file\nfile_path = '/mnt/data/file-F4uZ2anSBwSE4JfFTEg7W6'\n\n# Try to read the file to analyze its contents\ntry:\n # Attempt to read as CSV\n data = pd.read_csv(file_path)\nexcept Exception:\n try:\n # Attempt to read as Excel\n data = pd.read_excel(file_path)\n except Exception:\n # If file is not in readable format, set data to None\n data = None\n\n# Display the first few rows of the data and the columns\ndata.head(), data.columns if data is not None else \"Unreadable or unsupported file format\"", + "outputs": [] + } + } + ] + }, + "usage": { + "prompt_tokens": 271, + "completion_tokens": 157, + "total_tokens": 428, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } } ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true + "first_id": "step_E7Jy0WVhzBBTUYIlV27GM9aa", + "last_id": "step_HfDCkwWjZTOsQyG4LOqEWD9u", + "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc/steps?limit=2&after=step_HfDCkwWjZTOsQyG4LOqEWD9u&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e4593f5da354-SEA", + "CF-RAY": "996e3bb62a7824e6-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "1072", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:03 GMT", + "Date": "Thu, 30 Oct 2025 22:08:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "307", + "openai-processing-ms": "79", "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": "353", + "x-envoy-upstream-service-time": "83", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ + "object": "list", + "data": [ { - "type": "code_interpreter" + "id": "step_diWVROOe5O77mQyifIKUeF5A", + "object": "thread.run.step", + "created_at": 1761862113, + "run_id": "run_LAndsmZANdPllF1ZTmzt1tDc", + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862116, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_lGLzf60RJT5fMaIU0MXhAfUC" + } + }, + "usage": { + "prompt_tokens": 231, + "completion_tokens": 38, + "total_tokens": 269, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } } ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true + "first_id": "step_diWVROOe5O77mQyifIKUeF5A", + "last_id": "step_diWVROOe5O77mQyifIKUeF5A", + "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc/steps?limit=2&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e4623e48a354-SEA", + "CF-RAY": "996e3bb74ba824e6-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "2753", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:05 GMT", + "Date": "Thu, 30 Oct 2025 22:08:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "446", + "openai-processing-ms": "91", "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": "451", + "x-envoy-upstream-service-time": "102", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ + "object": "list", + "data": [ { - "type": "code_interpreter" + "id": "step_E7Jy0WVhzBBTUYIlV27GM9aa", + "object": "thread.run.step", + "created_at": 1761862123, + "run_id": "run_LAndsmZANdPllF1ZTmzt1tDc", + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862124, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_XxJukKoiwKRDwffiFxPT0vYo" + } + }, + "usage": { + "prompt_tokens": 519, + "completion_tokens": 67, + "total_tokens": 586, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_HfDCkwWjZTOsQyG4LOqEWD9u", + "object": "thread.run.step", + "created_at": 1761862116, + "run_id": "run_LAndsmZANdPllF1ZTmzt1tDc", + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", + "type": "tool_calls", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862123, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "tool_calls", + "tool_calls": [ + { + "id": "call_16BMqUcacKJfdO1DjMBV6R3N", + "type": "code_interpreter", + "code_interpreter": { + "input": "# Import necessary library\nimport pandas as pd\n\n# Load the uploaded file\nfile_path = '/mnt/data/file-F4uZ2anSBwSE4JfFTEg7W6'\n\n# Try to read the file to analyze its contents\ntry:\n # Attempt to read as CSV\n data = pd.read_csv(file_path)\nexcept Exception:\n try:\n # Attempt to read as Excel\n data = pd.read_excel(file_path)\n except Exception:\n # If file is not in readable format, set data to None\n data = None\n\n# Display the first few rows of the data and the columns\ndata.head(), data.columns if data is not None else \"Unreadable or unsupported file format\"", + "outputs": [] + } + } + ] + }, + "usage": { + "prompt_tokens": 271, + "completion_tokens": 157, + "total_tokens": 428, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } } ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true + "first_id": "step_E7Jy0WVhzBBTUYIlV27GM9aa", + "last_id": "step_HfDCkwWjZTOsQyG4LOqEWD9u", + "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", + "RequestUri": "https://api.openai.com/v1/threads/thread_BEOsFpnrJMTMdv1UueEtkcj0/runs/run_LAndsmZANdPllF1ZTmzt1tDc/steps?limit=2&after=step_HfDCkwWjZTOsQyG4LOqEWD9u&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e46bcdaba354-SEA", + "CF-RAY": "996e3bb87cee24e6-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "1072", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:06 GMT", + "Date": "Thu, 30 Oct 2025 22:08:47 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "232", + "openai-processing-ms": "81", "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": "249", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4743c17a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:08 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "188", - "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": "191", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e47c2a28a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:09 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "215", - "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": "238", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e484786ba354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:10 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "159", - "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": "163", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e48c4e72a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:11 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "129", - "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": "132", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e493ec7ba354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:20 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "6702", - "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": "7082", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4c78e9ba354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:21 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "171", - "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": "176", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4cf9c82a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:22 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "198", - "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": "206", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4d7aa6da354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:24 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "212", - "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": "226", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "in_progress", - "started_at": 1758062685, - "expires_at": 1758063283, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4dfd820a354-SEA", - "Connection": "keep-alive", - "Content-Length": "1167", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:25 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "214", - "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": "223", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "object": "thread.run", - "created_at": 1758062683, - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "status": "completed", - "started_at": 1758062685, - "expires_at": null, - "cancelled_at": null, - "failed_at": null, - "completed_at": 1758062724, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": { - "prompt_tokens": 11937, - "completion_tokens": 823, - "total_tokens": 12760, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - }, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1/steps?limit=2&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4e1e9a6a354-SEA", - "Connection": "keep-alive", - "Content-Length": "3140", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:25 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "96", - "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": "99", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_u1lGJWVjq5HMUaQgMKSV9rkT", - "object": "thread.run.step", - "created_at": 1758062719, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062724, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_atlwd4ZNrs94f5Fm750HtSyq" - } - }, - "usage": { - "prompt_tokens": 2747, - "completion_tokens": 191, - "total_tokens": 2938, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_fBf9vz0wXoEGd0v2yE7cncet", - "object": "thread.run.step", - "created_at": 1758062708, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062719, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_B4GsgEHD7iia9o1YdFACel8L", - "type": "code_interpreter", - "code_interpreter": { - "input": "import numpy as np\nimport matplotlib.pyplot as plt\nfrom sklearn.linear_model import LinearRegression\nfrom scipy.stats import pearsonr\n\n# Prepare the data\nx = data['x'].values.reshape(-1, 1)\ny = data['y'].values\n\n# Perform linear regression\nmodel = LinearRegression()\nmodel.fit(x, y)\n\n# Predict y values\ny_pred = model.predict(x)\n\n# Calculate the Pearson correlation coefficient\ncorrelation_coef, _ = pearsonr(data['x'], data['y'])\n\n# Plot the data points and the linear regression line\nplt.figure(figsize=(8, 6))\nplt.scatter(x, y, color='blue', label='Data Points')\nplt.plot(x, y_pred, color='red', label='Regression Line')\nplt.xlabel('x')\nplt.ylabel('y')\nplt.title('Linear Regression with Correlation Coefficient')\nplt.legend()\nplt.grid(True)\nplt.show()\n\ncorrelation_coef", - "outputs": [ - { - "type": "image", - "image": { - "file_id": "file-2PtYzqTBMnw6EbCtfwzfSr" - } - } - ] - } - } - ] - }, - "usage": { - "prompt_tokens": 1774, - "completion_tokens": 197, - "total_tokens": 1971, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_u1lGJWVjq5HMUaQgMKSV9rkT", - "last_id": "step_fBf9vz0wXoEGd0v2yE7cncet", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1/steps?limit=2&after=step_fBf9vz0wXoEGd0v2yE7cncet&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4e30a5ea354-SEA", - "Connection": "keep-alive", - "Content-Length": "2706", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:25 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "119", - "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": "137", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_Ae1n6FDXOdIBjbu0UCvBjnIi", - "object": "thread.run.step", - "created_at": 1758062704, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062708, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_vXRp5IIg9uaj3AnvlysHqgFG" - } - }, - "usage": { - "prompt_tokens": 1647, - "completion_tokens": 125, - "total_tokens": 1772, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_asCUH5v0NA5K2x0ciFhh2BuW", - "object": "thread.run.step", - "created_at": 1758062701, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062704, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_vvl4IgQCm6vq9dcaKPiEALNd", - "type": "code_interpreter", - "code_interpreter": { - "input": "# Load the data, skipping lines with too many fields\ndata = pd.read_csv(file_path, error_bad_lines=False)\n\n# Display the data to ensure it has been loaded correctly\ndata", - "outputs": [ - { - "type": "logs", - "logs": "/tmp/ipykernel_12/4109144427.py:2: FutureWarning: The error_bad_lines argument has been deprecated and will be removed in a future version. Use on_bad_lines in the future.\n\n\n data = pd.read_csv(file_path, error_bad_lines=False)\nSkipping line 3: expected 2 fields, saw 3\n\n" - } - ] - } - } - ] - }, - "usage": { - "prompt_tokens": 1504, - "completion_tokens": 44, - "total_tokens": 1548, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_Ae1n6FDXOdIBjbu0UCvBjnIi", - "last_id": "step_asCUH5v0NA5K2x0ciFhh2BuW", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1/steps?limit=2&after=step_asCUH5v0NA5K2x0ciFhh2BuW&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4e46b63a354-SEA", - "Connection": "keep-alive", - "Content-Length": "2402", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:26 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "115", - "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": "120", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_3xONQ7RVgbGzCVlQYE6M5HxT", - "object": "thread.run.step", - "created_at": 1758062698, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062701, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_FgZd6tFwmnpAiw4qCuJPmpoG" - } - }, - "usage": { - "prompt_tokens": 1431, - "completion_tokens": 71, - "total_tokens": 1502, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_cGEUOx8IaQXJi7jtB3sjvAa9", - "object": "thread.run.step", - "created_at": 1758062696, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062698, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_M9KrFRLRJRav2EiCg3hV7jCh", - "type": "code_interpreter", - "code_interpreter": { - "input": "# Attempt to load the file with flexibility for delimiters\n# Print the first few lines to inspect the format\nwith open(file_path, 'r') as file:\n lines = file.readlines()\n\n# Display the first few lines to understand its structure and delimiter\nlines[:10]", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 1337, - "completion_tokens": 63, - "total_tokens": 1400, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_3xONQ7RVgbGzCVlQYE6M5HxT", - "last_id": "step_cGEUOx8IaQXJi7jtB3sjvAa9", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1/steps?limit=2&after=step_cGEUOx8IaQXJi7jtB3sjvAa9&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4e5ac2ca354-SEA", - "Connection": "keep-alive", - "Content-Length": "2384", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:26 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "388", - "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": "403", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_fFuI3dprk6BUyv2JbSrKhQnd", - "object": "thread.run.step", - "created_at": 1758062693, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062696, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_tLi75FeIEvGLlNcnCsEnyQkb" - } - }, - "usage": { - "prompt_tokens": 1272, - "completion_tokens": 63, - "total_tokens": 1335, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_ACtnjfUNUsXYiI9uBjkuMoeW", - "object": "thread.run.step", - "created_at": 1758062687, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062693, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_6xVF2Wzh9lun3xXyrk8wihgI", - "type": "code_interpreter", - "code_interpreter": { - "input": "import pandas as pd\n\n# Load the uploaded file to examine its contents\nfile_path = '/mnt/data/file-GrwsDPTwJSeEmq8P2VRu71'\ndata = pd.read_csv(file_path)\n\n# Display the first few rows of the dataframe to understand its structure\ndata.head()", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 225, - "completion_tokens": 69, - "total_tokens": 294, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_fFuI3dprk6BUyv2JbSrKhQnd", - "last_id": "step_ACtnjfUNUsXYiI9uBjkuMoeW", - "has_more": false - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1/steps?limit=2&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4e8de8ba354-SEA", - "Connection": "keep-alive", - "Content-Length": "3140", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:26 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "84", - "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": "88", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_u1lGJWVjq5HMUaQgMKSV9rkT", - "object": "thread.run.step", - "created_at": 1758062719, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062724, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_atlwd4ZNrs94f5Fm750HtSyq" - } - }, - "usage": { - "prompt_tokens": 2747, - "completion_tokens": 191, - "total_tokens": 2938, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_fBf9vz0wXoEGd0v2yE7cncet", - "object": "thread.run.step", - "created_at": 1758062708, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062719, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_B4GsgEHD7iia9o1YdFACel8L", - "type": "code_interpreter", - "code_interpreter": { - "input": "import numpy as np\nimport matplotlib.pyplot as plt\nfrom sklearn.linear_model import LinearRegression\nfrom scipy.stats import pearsonr\n\n# Prepare the data\nx = data['x'].values.reshape(-1, 1)\ny = data['y'].values\n\n# Perform linear regression\nmodel = LinearRegression()\nmodel.fit(x, y)\n\n# Predict y values\ny_pred = model.predict(x)\n\n# Calculate the Pearson correlation coefficient\ncorrelation_coef, _ = pearsonr(data['x'], data['y'])\n\n# Plot the data points and the linear regression line\nplt.figure(figsize=(8, 6))\nplt.scatter(x, y, color='blue', label='Data Points')\nplt.plot(x, y_pred, color='red', label='Regression Line')\nplt.xlabel('x')\nplt.ylabel('y')\nplt.title('Linear Regression with Correlation Coefficient')\nplt.legend()\nplt.grid(True)\nplt.show()\n\ncorrelation_coef", - "outputs": [ - { - "type": "image", - "image": { - "file_id": "file-2PtYzqTBMnw6EbCtfwzfSr" - } - } - ] - } - } - ] - }, - "usage": { - "prompt_tokens": 1774, - "completion_tokens": 197, - "total_tokens": 1971, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_u1lGJWVjq5HMUaQgMKSV9rkT", - "last_id": "step_fBf9vz0wXoEGd0v2yE7cncet", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1/steps?limit=2&after=step_fBf9vz0wXoEGd0v2yE7cncet&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4e9dfa7a354-SEA", - "Connection": "keep-alive", - "Content-Length": "2706", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:26 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "163", - "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": "176", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_Ae1n6FDXOdIBjbu0UCvBjnIi", - "object": "thread.run.step", - "created_at": 1758062704, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062708, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_vXRp5IIg9uaj3AnvlysHqgFG" - } - }, - "usage": { - "prompt_tokens": 1647, - "completion_tokens": 125, - "total_tokens": 1772, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_asCUH5v0NA5K2x0ciFhh2BuW", - "object": "thread.run.step", - "created_at": 1758062701, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062704, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_vvl4IgQCm6vq9dcaKPiEALNd", - "type": "code_interpreter", - "code_interpreter": { - "input": "# Load the data, skipping lines with too many fields\ndata = pd.read_csv(file_path, error_bad_lines=False)\n\n# Display the data to ensure it has been loaded correctly\ndata", - "outputs": [ - { - "type": "logs", - "logs": "/tmp/ipykernel_12/4109144427.py:2: FutureWarning: The error_bad_lines argument has been deprecated and will be removed in a future version. Use on_bad_lines in the future.\n\n\n data = pd.read_csv(file_path, error_bad_lines=False)\nSkipping line 3: expected 2 fields, saw 3\n\n" - } - ] - } - } - ] - }, - "usage": { - "prompt_tokens": 1504, - "completion_tokens": 44, - "total_tokens": 1548, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_Ae1n6FDXOdIBjbu0UCvBjnIi", - "last_id": "step_asCUH5v0NA5K2x0ciFhh2BuW", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1/steps?limit=2&after=step_asCUH5v0NA5K2x0ciFhh2BuW&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4eb896aa354-SEA", - "Connection": "keep-alive", - "Content-Length": "2402", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:27 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "206", - "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": "224", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_3xONQ7RVgbGzCVlQYE6M5HxT", - "object": "thread.run.step", - "created_at": 1758062698, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062701, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_FgZd6tFwmnpAiw4qCuJPmpoG" - } - }, - "usage": { - "prompt_tokens": 1431, - "completion_tokens": 71, - "total_tokens": 1502, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_cGEUOx8IaQXJi7jtB3sjvAa9", - "object": "thread.run.step", - "created_at": 1758062696, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062698, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_M9KrFRLRJRav2EiCg3hV7jCh", - "type": "code_interpreter", - "code_interpreter": { - "input": "# Attempt to load the file with flexibility for delimiters\n# Print the first few lines to inspect the format\nwith open(file_path, 'r') as file:\n lines = file.readlines()\n\n# Display the first few lines to understand its structure and delimiter\nlines[:10]", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 1337, - "completion_tokens": 63, - "total_tokens": 1400, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_3xONQ7RVgbGzCVlQYE6M5HxT", - "last_id": "step_cGEUOx8IaQXJi7jtB3sjvAa9", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_gNa7IIUvHda7kNnsXTtfb11Y/runs/run_duyrfW3GixpuTtWdSzOf3EG1/steps?limit=2&after=step_cGEUOx8IaQXJi7jtB3sjvAa9&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e4edab7da354-SEA", - "Connection": "keep-alive", - "Content-Length": "2384", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:45:27 GMT", - "openai-organization": "Sanitized", - "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": "163", + "x-envoy-upstream-service-time": "85", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "step_fFuI3dprk6BUyv2JbSrKhQnd", + "id": "step_diWVROOe5O77mQyifIKUeF5A", "object": "thread.run.step", - "created_at": 1758062693, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", + "created_at": 1761862113, + "run_id": "run_LAndsmZANdPllF1ZTmzt1tDc", + "assistant_id": "asst_v2RC31cm58wuQA4V75TcJC9G", + "thread_id": "thread_BEOsFpnrJMTMdv1UueEtkcj0", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062696, + "completed_at": 1761862116, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_tLi75FeIEvGLlNcnCsEnyQkb" - } - }, - "usage": { - "prompt_tokens": 1272, - "completion_tokens": 63, - "total_tokens": 1335, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 + "message_id": "msg_lGLzf60RJT5fMaIU0MXhAfUC" } - } - }, - { - "id": "step_ACtnjfUNUsXYiI9uBjkuMoeW", - "object": "thread.run.step", - "created_at": 1758062687, - "run_id": "run_duyrfW3GixpuTtWdSzOf3EG1", - "assistant_id": "asst_xSmQ13uOwp2pgfWm7zRZwPgI", - "thread_id": "thread_gNa7IIUvHda7kNnsXTtfb11Y", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062693, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_6xVF2Wzh9lun3xXyrk8wihgI", - "type": "code_interpreter", - "code_interpreter": { - "input": "import pandas as pd\n\n# Load the uploaded file to examine its contents\nfile_path = '/mnt/data/file-GrwsDPTwJSeEmq8P2VRu71'\ndata = pd.read_csv(file_path)\n\n# Display the first few rows of the dataframe to understand its structure\ndata.head()", - "outputs": [] - } - } - ] }, "usage": { - "prompt_tokens": 225, - "completion_tokens": 69, - "total_tokens": 294, + "prompt_tokens": 231, + "completion_tokens": 38, + "total_tokens": 269, "prompt_token_details": { "cached_tokens": 0 }, @@ -2501,8 +1097,8 @@ } } ], - "first_id": "step_fFuI3dprk6BUyv2JbSrKhQnd", - "last_id": "step_ACtnjfUNUsXYiI9uBjkuMoeW", + "first_id": "step_diWVROOe5O77mQyifIKUeF5A", + "last_id": "step_diWVROOe5O77mQyifIKUeF5A", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateRunStepPageCollectionFromBytesAsync.json b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateRunStepPageCollectionFromBytesAsync.json index a4ae10e36..54e0e3042 100644 --- a/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateRunStepPageCollectionFromBytesAsync.json +++ b/tests/SessionRecords/AssistantsTests/Pagination_CanRehydrateRunStepPageCollectionFromBytesAsync.json @@ -9,7 +9,7 @@ "Content-Length": "142", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "model": "gpt-4o", @@ -24,25 +24,26 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e7995c6aa354-SEA", + "CF-RAY": "996e38a8ce8008e3-SEA", "Connection": "keep-alive", "Content-Length": "502", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:17 GMT", + "Date": "Thu, 30 Oct 2025 22:06:42 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "343", + "openai-processing-ms": "185", "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": "352", + "x-envoy-upstream-service-time": "190", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", + "id": "asst_iwqK9ZgKt97UAmtTte70BgKp", "object": "assistant", - "created_at": 1758062836, + "created_at": 1761862002, "name": null, "description": null, "model": "gpt-4o", @@ -71,8 +72,8 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "440", - "Content-Type": "multipart/form-data; boundary=\"EXl0Pdgb=Ejsec3T38DcRoXgZdNYQONuzYMC2ZwW1ziYt95FQ1iUbiuedOqQlv8bVWLaRj\"", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "Content-Type": "multipart/form-data; boundary=\"_6oLPOYBMRcJ2E30vYBHoiSMuf=Gh_FkqYO6D_Et5xNwB_eNv2j16PjNZjzft_j3_2QAgB\"", + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": null, "StatusCode": 200, @@ -80,29 +81,29 @@ "Access-Control-Allow-Origin": "*", "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e79c4efba354-SEA", + "CF-RAY": "996e38aa98f108e3-SEA", "Connection": "keep-alive", "Content-Length": "231", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:17 GMT", + "Date": "Thu, 30 Oct 2025 22:06:43 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "534", + "openai-processing-ms": "708", "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": "541", + "x-envoy-upstream-service-time": "717", "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "file", - "id": "file-BmLtkG8KRxR8mKiaeEYS96", + "id": "file-LnGX41JmKp6yCExDJSWK5X", "purpose": "assistants", "filename": "text/csv", "bytes": 18, - "created_at": 1758062837, + "created_at": 1761862002, "expires_at": null, "status": "processed", "status_details": null @@ -117,7 +118,7 @@ "Content-Length": "293", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -129,7 +130,7 @@ "tool_resources": { "code_interpreter": { "file_ids": [ - "file-BmLtkG8KRxR8mKiaeEYS96" + "file-LnGX41JmKp6yCExDJSWK5X" ] } } @@ -138,37 +139,38 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e7a06a01a354-SEA", + "CF-RAY": "996e38b0390508e3-SEA", "Connection": "keep-alive", "Content-Length": "238", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:19 GMT", + "Date": "Thu, 30 Oct 2025 22:06:44 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1415", + "openai-processing-ms": "1192", "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": "1440", + "x-envoy-upstream-service-time": "1196", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "object": "thread", - "created_at": 1758062837, + "created_at": 1761862003, "metadata": {}, "tool_resources": { "code_interpreter": { "file_ids": [ - "file-BmLtkG8KRxR8mKiaeEYS96" + "file-LnGX41JmKp6yCExDJSWK5X" ] } } } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -176,40 +178,41 @@ "Content-Length": "73", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", "additional_messages": [] }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e7a9e8dda354-SEA", + "CF-RAY": "996e38b83e0208e3-SEA", "Connection": "keep-alive", "Content-Length": "941", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:20 GMT", + "Date": "Thu, 30 Oct 2025 22:06:45 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1411", + "openai-processing-ms": "890", "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": "1428", + "x-envoy-upstream-service-time": "893", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", + "id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "created_at": 1761862004, + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "status": "queued", "started_at": null, - "expires_at": 1758063439, + "expires_at": 1761862604, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -241,43 +244,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7b9bdafa354-SEA", + "CF-RAY": "996e38c4b9bd08e3-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:22 GMT", + "Date": "Thu, 30 Oct 2025 22:06:46 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "190", + "openai-processing-ms": "163", "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": "206", + "x-envoy-upstream-service-time": "165", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", + "id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "created_at": 1761862004, + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, + "started_at": 1761862005, + "expires_at": 1761862604, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -309,43 +313,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7c1dc26a354-SEA", + "CF-RAY": "996e38cceee908e3-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:23 GMT", + "Date": "Thu, 30 Oct 2025 22:06:48 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "172", + "openai-processing-ms": "231", "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": "179", + "x-envoy-upstream-service-time": "236", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", + "id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "created_at": 1761862004, + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, + "started_at": 1761862005, + "expires_at": 1761862604, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -377,43 +382,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7c9dadfa354-SEA", + "CF-RAY": "996e38d55d1408e3-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:24 GMT", + "Date": "Thu, 30 Oct 2025 22:06:49 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "223", + "openai-processing-ms": "263", "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": "232", + "x-envoy-upstream-service-time": "269", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", + "id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "created_at": 1761862004, + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, + "started_at": 1761862005, + "expires_at": 1761862604, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -445,43 +451,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7d219dca354-SEA", + "CF-RAY": "996e38ddfad808e3-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:26 GMT", + "Date": "Thu, 30 Oct 2025 22:06:51 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "165", + "openai-processing-ms": "264", "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": "168", + "x-envoy-upstream-service-time": "381", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", + "id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "created_at": 1761862004, + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, + "started_at": 1761862005, + "expires_at": 1761862604, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -513,43 +520,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7d9e807a354-SEA", + "CF-RAY": "996e38e73a3608e3-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:27 GMT", + "Date": "Thu, 30 Oct 2025 22:06:52 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "160", + "openai-processing-ms": "185", "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": "166", + "x-envoy-upstream-service-time": "192", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", + "id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "created_at": 1761862004, + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, + "started_at": 1761862005, + "expires_at": 1761862604, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -581,43 +589,44 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7e1cf8fa354-SEA", + "CF-RAY": "996e38ef580608e3-SEA", "Connection": "keep-alive", "Content-Length": "952", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:28 GMT", + "Date": "Thu, 30 Oct 2025 22:06:53 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "218", + "openai-processing-ms": "509", "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": "224", + "x-envoy-upstream-service-time": "514", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", + "id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "created_at": 1761862004, + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, + "started_at": 1761862005, + "expires_at": 1761862604, "cancelled_at": null, "failed_at": null, "completed_at": null, @@ -649,46 +658,47 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7ea0f59a354-SEA", + "CF-RAY": "996e38f978c408e3-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "1165", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:30 GMT", + "Date": "Thu, 30 Oct 2025 22:06:55 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "511", + "openai-processing-ms": "196", "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": "566", + "x-envoy-upstream-service-time": "202", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", + "id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, + "created_at": 1761862004, + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", + "status": "completed", + "started_at": 1761862005, + "expires_at": null, "cancelled_at": null, "failed_at": null, - "completed_at": null, + "completed_at": 1761862014, "required_action": null, "last_error": null, "model": "gpt-4o", @@ -710,2258 +720,370 @@ "last_messages": null }, "incomplete_details": null, - "usage": null, + "usage": { + "prompt_tokens": 1828, + "completion_tokens": 173, + "total_tokens": 2001, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + }, "response_format": "auto", "tool_choice": "auto", "parallel_tool_calls": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy/steps?limit=2&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7f46fbca354-SEA", + "CF-RAY": "996e38fb6c0408e3-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "2357", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:31 GMT", + "Date": "Thu, 30 Oct 2025 22:06:55 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "160", + "openai-processing-ms": "61", "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": "164", + "x-envoy-upstream-service-time": "65", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ + "object": "list", + "data": [ { - "type": "code_interpreter" + "id": "step_k0s3ugd4uP85wGZ7TzGTueHi", + "object": "thread.run.step", + "created_at": 1761862013, + "run_id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862014, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_5E4Bd180XZXXKEnErok9T3AL" + } + }, + "usage": { + "prompt_tokens": 1321, + "completion_tokens": 59, + "total_tokens": 1380, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_azAwL3S9PGks4AypWC707Bvq", + "object": "thread.run.step", + "created_at": 1761862009, + "run_id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", + "type": "tool_calls", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862013, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "tool_calls", + "tool_calls": [ + { + "id": "call_iNoeqmmyqzEW2x9nw6BOxVyn", + "type": "code_interpreter", + "code_interpreter": { + "input": "import pandas as pd\n\n# Load the uploaded file\nfile_path = '/mnt/data/file-LnGX41JmKp6yCExDJSWK5X'\ndata = pd.read_csv(file_path)\n\n# Display the first few rows of the dataset to understand its structure\ndata.head()", + "outputs": [] + } + } + ] + }, + "usage": { + "prompt_tokens": 278, + "completion_tokens": 67, + "total_tokens": 345, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } } ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true + "first_id": "step_k0s3ugd4uP85wGZ7TzGTueHi", + "last_id": "step_azAwL3S9PGks4AypWC707Bvq", + "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy/steps?limit=2&after=step_azAwL3S9PGks4AypWC707Bvq&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e7fc4da4a354-SEA", + "CF-RAY": "996e38fc6db008e3-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "1072", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:32 GMT", + "Date": "Thu, 30 Oct 2025 22:06:55 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "279", + "openai-processing-ms": "90", "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": "372", + "x-envoy-upstream-service-time": "97", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ + "object": "list", + "data": [ { - "type": "code_interpreter" + "id": "step_vD0Ec5anz1LSpXfpM6jMaQbj", + "object": "thread.run.step", + "created_at": 1761862006, + "run_id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862009, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_luwuQhRa241JwwwI4qRIbG53" + } + }, + "usage": { + "prompt_tokens": 229, + "completion_tokens": 47, + "total_tokens": 276, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } } ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true + "first_id": "step_vD0Ec5anz1LSpXfpM6jMaQbj", + "last_id": "step_vD0Ec5anz1LSpXfpM6jMaQbj", + "has_more": false } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy/steps?limit=2&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e8056d1ca354-SEA", + "CF-RAY": "996e38fdd80808e3-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "2357", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:37 GMT", + "Date": "Thu, 30 Oct 2025 22:06:56 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "3214", + "openai-processing-ms": "294", "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": "3502", + "x-envoy-upstream-service-time": "312", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ + "object": "list", + "data": [ { - "type": "code_interpreter" + "id": "step_k0s3ugd4uP85wGZ7TzGTueHi", + "object": "thread.run.step", + "created_at": 1761862013, + "run_id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", + "type": "message_creation", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862014, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "message_creation", + "message_creation": { + "message_id": "msg_5E4Bd180XZXXKEnErok9T3AL" + } + }, + "usage": { + "prompt_tokens": 1321, + "completion_tokens": 59, + "total_tokens": 1380, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } + }, + { + "id": "step_azAwL3S9PGks4AypWC707Bvq", + "object": "thread.run.step", + "created_at": 1761862009, + "run_id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", + "type": "tool_calls", + "status": "completed", + "cancelled_at": null, + "completed_at": 1761862013, + "expires_at": null, + "failed_at": null, + "last_error": null, + "step_details": { + "type": "tool_calls", + "tool_calls": [ + { + "id": "call_iNoeqmmyqzEW2x9nw6BOxVyn", + "type": "code_interpreter", + "code_interpreter": { + "input": "import pandas as pd\n\n# Load the uploaded file\nfile_path = '/mnt/data/file-LnGX41JmKp6yCExDJSWK5X'\ndata = pd.read_csv(file_path)\n\n# Display the first few rows of the dataset to understand its structure\ndata.head()", + "outputs": [] + } + } + ] + }, + "usage": { + "prompt_tokens": 278, + "completion_tokens": 67, + "total_tokens": 345, + "prompt_token_details": { + "cached_tokens": 0 + }, + "completion_tokens_details": { + "reasoning_tokens": 0 + } + } } ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true + "first_id": "step_k0s3ugd4uP85wGZ7TzGTueHi", + "last_id": "step_azAwL3S9PGks4AypWC707Bvq", + "has_more": true } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", + "RequestUri": "https://api.openai.com/v1/threads/thread_FSZxF4oD9W3KVX68koAxUaJJ/runs/run_VbmS3P5mN1yaFqnv6dVm6xZy/steps?limit=2&after=step_azAwL3S9PGks4AypWC707Bvq&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803e8227c0ca354-SEA", + "CF-RAY": "996e39005b7008e3-SEA", "Connection": "keep-alive", - "Content-Length": "952", + "Content-Length": "1072", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:38 GMT", + "Date": "Thu, 30 Oct 2025 22:06:56 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "191", + "openai-processing-ms": "109", "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": "196", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e82a7a8da354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:40 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "286", - "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": "296", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e83339a0a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:42 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "1434", - "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": "1588", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8440898a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:44 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "154", - "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": "157", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e84bcf53a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:45 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "251", - "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": "258", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8545ef1a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:46 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "186", - "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": "190", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e85c4e0aa354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:48 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "161", - "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": "167", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8644c37a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:49 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "198", - "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": "201", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e86c4ba6a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:50 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "373", - "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": "387", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e875ac2fa354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:52 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "256", - "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": "271", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e87e2b3ba354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:53 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "368", - "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": "375", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8875b2aa354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:55 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "280", - "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": "336", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8909bcea354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:56 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "188", - "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": "192", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8989b20a354-SEA", - "Connection": "keep-alive", - "Content-Length": "952", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:57 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "247", - "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": "256", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "in_progress", - "started_at": 1758062841, - "expires_at": 1758063439, - "cancelled_at": null, - "failed_at": null, - "completed_at": null, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": null, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8a10a57a354-SEA", - "Connection": "keep-alive", - "Content-Length": "1167", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:59 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "176", - "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": "180", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "object": "thread.run", - "created_at": 1758062839, - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "status": "completed", - "started_at": 1758062841, - "expires_at": null, - "cancelled_at": null, - "failed_at": null, - "completed_at": 1758062878, - "required_action": null, - "last_error": null, - "model": "gpt-4o", - "instructions": "You help the user with mathematical descriptions and visualizations.", - "tools": [ - { - "type": "code_interpreter" - } - ], - "tool_resources": {}, - "metadata": {}, - "temperature": 1.0, - "top_p": 1.0, - "reasoning_effort": null, - "max_completion_tokens": null, - "max_prompt_tokens": null, - "truncation_strategy": { - "type": "auto", - "last_messages": null - }, - "incomplete_details": null, - "usage": { - "prompt_tokens": 16629, - "completion_tokens": 926, - "total_tokens": 17555, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - }, - "response_format": "auto", - "tool_choice": "auto", - "parallel_tool_calls": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8a2cbbca354-SEA", - "Connection": "keep-alive", - "Content-Length": "3231", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:59 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "107", - "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": "111", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_6neerPWFSA3BahuOXtFMW4bw", - "object": "thread.run.step", - "created_at": 1758062870, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062878, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_2IynYR8o0JD3tMCnWAC4ebRD" - } - }, - "usage": { - "prompt_tokens": 3638, - "completion_tokens": 217, - "total_tokens": 3855, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_XsnJxaP4V6HceYx09auogci3", - "object": "thread.run.step", - "created_at": 1758062861, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062870, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_M83NiBpga2Rzh1wlCWcRr3q7", - "type": "code_interpreter", - "code_interpreter": { - "input": "import numpy as np\nimport matplotlib.pyplot as plt\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.metrics import r2_score\n\n# Extracting x and y values\nX = data['x'].values.reshape(-1, 1) # Reshape for sklearn\ny = data['y'].values\n\n# Performing linear regression\nmodel = LinearRegression()\nmodel.fit(X, y)\n\n# Making predictions\ny_pred = model.predict(X)\n\n# Calculating the coefficient of correlation (R^2 score)\nr2 = r2_score(y, y_pred)\n\n# Plotting the data points and the regression line\nplt.scatter(data['x'], data['y'], color='blue', label='Data points')\nplt.plot(data['x'], y_pred, color='red', label='Regression line')\nplt.xlabel('x')\nplt.ylabel('y')\nplt.title('Linear Regression Analysis')\nplt.legend()\nplt.show()\n\n# The slope and intercept of the linear regression\nslope = model.coef_[0]\nintercept = model.intercept_\n\nslope, intercept, r2", - "outputs": [ - { - "type": "image", - "image": { - "file_id": "file-D6EYn25N3GMKgqAf4HTNk1" - } - } - ] - } - } - ] - }, - "usage": { - "prompt_tokens": 2275, - "completion_tokens": 225, - "total_tokens": 2500, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_6neerPWFSA3BahuOXtFMW4bw", - "last_id": "step_XsnJxaP4V6HceYx09auogci3", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&after=step_XsnJxaP4V6HceYx09auogci3&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8a3fcbda354-SEA", - "Connection": "keep-alive", - "Content-Length": "2427", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:59 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "112", - "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": "119", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_ZsoKWXSTqEy7dbmJ4cdtekz6", - "object": "thread.run.step", - "created_at": 1758062859, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062861, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_Yz1EjDO22PK2o0UsNHGXXQo9" - } - }, - "usage": { - "prompt_tokens": 2219, - "completion_tokens": 54, - "total_tokens": 2273, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_fOcXbca9FOThvB9Voy6VdB5M", - "object": "thread.run.step", - "created_at": 1758062856, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062859, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_eTHakzr3K1XqrG9j40tAJjVE", - "type": "code_interpreter", - "code_interpreter": { - "input": "from io import StringIO\n\n# Correcting the extra comma and loading the data again\ncorrected_content = b\"x,y\\n2,5\\n7,14\\n8,22\" # Removing the extra comma in the data line\ndata = pd.read_csv(StringIO(corrected_content.decode('utf-8')))\n\n# Display the corrected data\ndata.head()", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 2102, - "completion_tokens": 81, - "total_tokens": 2183, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_ZsoKWXSTqEy7dbmJ4cdtekz6", - "last_id": "step_fOcXbca9FOThvB9Voy6VdB5M", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&after=step_fOcXbca9FOThvB9Voy6VdB5M&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8a53dc8a354-SEA", - "Connection": "keep-alive", - "Content-Length": "2325", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:47:59 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "332", - "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": "359", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_mDO76VwpODeP8dklA9gO0Vqd", - "object": "thread.run.step", - "created_at": 1758062853, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062856, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_1rigsfmnONYWSOUNih8qmR6A" - } - }, - "usage": { - "prompt_tokens": 2032, - "completion_tokens": 68, - "total_tokens": 2100, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_AjNj7gHhIdNFhO9ZuQ3rJCk5", - "object": "thread.run.step", - "created_at": 1758062851, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062853, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_ulwfuNbkcKQOSiVTZB7WqbrP", - "type": "code_interpreter", - "code_interpreter": { - "input": "# Let's check the file content by reading in a binary mode\nwith open(file_path, 'rb') as file:\n content = file.read()\n\ncontent[:500] # Display the first 500 bytes for inspection", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 1957, - "completion_tokens": 50, - "total_tokens": 2007, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_mDO76VwpODeP8dklA9gO0Vqd", - "last_id": "step_AjNj7gHhIdNFhO9ZuQ3rJCk5", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&after=step_AjNj7gHhIdNFhO9ZuQ3rJCk5&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8a7f807a354-SEA", - "Connection": "keep-alive", - "Content-Length": "2535", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:48:00 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "316", - "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": "402", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_iCKrPTNBS2FkWfShdJ7NuPye", - "object": "thread.run.step", - "created_at": 1758062849, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062851, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_xpPW1yghNNE60CYixOHwZUTK" - } - }, - "usage": { - "prompt_tokens": 1892, - "completion_tokens": 63, - "total_tokens": 1955, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_5LuZmYQkh6asuYzq6vxvX5pt", - "object": "thread.run.step", - "created_at": 1758062844, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062849, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_pqMsWPORxIOKuppUJ05q748y", - "type": "code_interpreter", - "code_interpreter": { - "input": "import pandas as pd\n\n# Load the file to inspect its contents\nfile_path = '/mnt/data/file-BmLtkG8KRxR8mKiaeEYS96'\n\n# Try to read the file as a CSV first\ntry:\n data = pd.read_csv(file_path)\nexcept Exception as e:\n # If reading as CSV fails, try reading as Excel\n data = pd.read_excel(file_path)\n\n# Display the first few rows of the data to understand its structure\ndata.head()", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 287, - "completion_tokens": 110, - "total_tokens": 397, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_iCKrPTNBS2FkWfShdJ7NuPye", - "last_id": "step_5LuZmYQkh6asuYzq6vxvX5pt", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&after=step_5LuZmYQkh6asuYzq6vxvX5pt&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8ab3ad6a354-SEA", - "Connection": "keep-alive", - "Content-Length": "1072", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:48:04 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "3434", - "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": "3760", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_tgd8WgABgtvl3lXiySR2txXo", - "object": "thread.run.step", - "created_at": 1758062843, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062844, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_B6gSyB1dvTCcYjBxRl9YLr9H" - } - }, - "usage": { - "prompt_tokens": 227, - "completion_tokens": 58, - "total_tokens": 285, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_tgd8WgABgtvl3lXiySR2txXo", - "last_id": "step_tgd8WgABgtvl3lXiySR2txXo", - "has_more": false - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8c38832a354-SEA", - "Connection": "keep-alive", - "Content-Length": "3231", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:48:07 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "2804", - "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": "2956", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_6neerPWFSA3BahuOXtFMW4bw", - "object": "thread.run.step", - "created_at": 1758062870, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062878, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_2IynYR8o0JD3tMCnWAC4ebRD" - } - }, - "usage": { - "prompt_tokens": 3638, - "completion_tokens": 217, - "total_tokens": 3855, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_XsnJxaP4V6HceYx09auogci3", - "object": "thread.run.step", - "created_at": 1758062861, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062870, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_M83NiBpga2Rzh1wlCWcRr3q7", - "type": "code_interpreter", - "code_interpreter": { - "input": "import numpy as np\nimport matplotlib.pyplot as plt\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.metrics import r2_score\n\n# Extracting x and y values\nX = data['x'].values.reshape(-1, 1) # Reshape for sklearn\ny = data['y'].values\n\n# Performing linear regression\nmodel = LinearRegression()\nmodel.fit(X, y)\n\n# Making predictions\ny_pred = model.predict(X)\n\n# Calculating the coefficient of correlation (R^2 score)\nr2 = r2_score(y, y_pred)\n\n# Plotting the data points and the regression line\nplt.scatter(data['x'], data['y'], color='blue', label='Data points')\nplt.plot(data['x'], y_pred, color='red', label='Regression line')\nplt.xlabel('x')\nplt.ylabel('y')\nplt.title('Linear Regression Analysis')\nplt.legend()\nplt.show()\n\n# The slope and intercept of the linear regression\nslope = model.coef_[0]\nintercept = model.intercept_\n\nslope, intercept, r2", - "outputs": [ - { - "type": "image", - "image": { - "file_id": "file-D6EYn25N3GMKgqAf4HTNk1" - } - } - ] - } - } - ] - }, - "usage": { - "prompt_tokens": 2275, - "completion_tokens": 225, - "total_tokens": 2500, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_6neerPWFSA3BahuOXtFMW4bw", - "last_id": "step_XsnJxaP4V6HceYx09auogci3", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&after=step_XsnJxaP4V6HceYx09auogci3&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8d6b942a354-SEA", - "Connection": "keep-alive", - "Content-Length": "2427", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:48:08 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "298", - "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": "868", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_ZsoKWXSTqEy7dbmJ4cdtekz6", - "object": "thread.run.step", - "created_at": 1758062859, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062861, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_Yz1EjDO22PK2o0UsNHGXXQo9" - } - }, - "usage": { - "prompt_tokens": 2219, - "completion_tokens": 54, - "total_tokens": 2273, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_fOcXbca9FOThvB9Voy6VdB5M", - "object": "thread.run.step", - "created_at": 1758062856, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062859, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_eTHakzr3K1XqrG9j40tAJjVE", - "type": "code_interpreter", - "code_interpreter": { - "input": "from io import StringIO\n\n# Correcting the extra comma and loading the data again\ncorrected_content = b\"x,y\\n2,5\\n7,14\\n8,22\" # Removing the extra comma in the data line\ndata = pd.read_csv(StringIO(corrected_content.decode('utf-8')))\n\n# Display the corrected data\ndata.head()", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 2102, - "completion_tokens": 81, - "total_tokens": 2183, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_ZsoKWXSTqEy7dbmJ4cdtekz6", - "last_id": "step_fOcXbca9FOThvB9Voy6VdB5M", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&after=step_fOcXbca9FOThvB9Voy6VdB5M&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8dcaf0da354-SEA", - "Connection": "keep-alive", - "Content-Length": "2325", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:48:09 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "633", - "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": "694", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_mDO76VwpODeP8dklA9gO0Vqd", - "object": "thread.run.step", - "created_at": 1758062853, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062856, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_1rigsfmnONYWSOUNih8qmR6A" - } - }, - "usage": { - "prompt_tokens": 2032, - "completion_tokens": 68, - "total_tokens": 2100, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_AjNj7gHhIdNFhO9ZuQ3rJCk5", - "object": "thread.run.step", - "created_at": 1758062851, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062853, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_ulwfuNbkcKQOSiVTZB7WqbrP", - "type": "code_interpreter", - "code_interpreter": { - "input": "# Let's check the file content by reading in a binary mode\nwith open(file_path, 'rb') as file:\n content = file.read()\n\ncontent[:500] # Display the first 500 bytes for inspection", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 1957, - "completion_tokens": 50, - "total_tokens": 2007, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_mDO76VwpODeP8dklA9gO0Vqd", - "last_id": "step_AjNj7gHhIdNFhO9ZuQ3rJCk5", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&after=step_AjNj7gHhIdNFhO9ZuQ3rJCk5&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8e1bbc3a354-SEA", - "Connection": "keep-alive", - "Content-Length": "2535", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:48:09 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "246", - "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": "277", - "X-Request-ID": "Sanitized" - }, - "ResponseBody": { - "object": "list", - "data": [ - { - "id": "step_iCKrPTNBS2FkWfShdJ7NuPye", - "object": "thread.run.step", - "created_at": 1758062849, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "message_creation", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062851, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "message_creation", - "message_creation": { - "message_id": "msg_xpPW1yghNNE60CYixOHwZUTK" - } - }, - "usage": { - "prompt_tokens": 1892, - "completion_tokens": 63, - "total_tokens": 1955, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - }, - { - "id": "step_5LuZmYQkh6asuYzq6vxvX5pt", - "object": "thread.run.step", - "created_at": 1758062844, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", - "type": "tool_calls", - "status": "completed", - "cancelled_at": null, - "completed_at": 1758062849, - "expires_at": null, - "failed_at": null, - "last_error": null, - "step_details": { - "type": "tool_calls", - "tool_calls": [ - { - "id": "call_pqMsWPORxIOKuppUJ05q748y", - "type": "code_interpreter", - "code_interpreter": { - "input": "import pandas as pd\n\n# Load the file to inspect its contents\nfile_path = '/mnt/data/file-BmLtkG8KRxR8mKiaeEYS96'\n\n# Try to read the file as a CSV first\ntry:\n data = pd.read_csv(file_path)\nexcept Exception as e:\n # If reading as CSV fails, try reading as Excel\n data = pd.read_excel(file_path)\n\n# Display the first few rows of the data to understand its structure\ndata.head()", - "outputs": [] - } - } - ] - }, - "usage": { - "prompt_tokens": 287, - "completion_tokens": 110, - "total_tokens": 397, - "prompt_token_details": { - "cached_tokens": 0 - }, - "completion_tokens_details": { - "reasoning_tokens": 0 - } - } - } - ], - "first_id": "step_iCKrPTNBS2FkWfShdJ7NuPye", - "last_id": "step_5LuZmYQkh6asuYzq6vxvX5pt", - "has_more": true - } - }, - { - "RequestUri": "https://api.openai.com/v1/threads/thread_Api3vG1OdmCVtRZkCTNg1QO5/runs/run_EU0DCpa2g452ajXrnFAiDV6y/steps?limit=2&after=step_5LuZmYQkh6asuYzq6vxvX5pt&include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Alt-Svc": "h3=\":443\"", - "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803e8e40e04a354-SEA", - "Connection": "keep-alive", - "Content-Length": "1072", - "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:48:09 GMT", - "openai-organization": "Sanitized", - "openai-processing-ms": "107", - "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": "112", + "x-envoy-upstream-service-time": "114", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "step_tgd8WgABgtvl3lXiySR2txXo", + "id": "step_vD0Ec5anz1LSpXfpM6jMaQbj", "object": "thread.run.step", - "created_at": 1758062843, - "run_id": "run_EU0DCpa2g452ajXrnFAiDV6y", - "assistant_id": "asst_fuwZKD8zzzh1o9Ehq7bbMouA", - "thread_id": "thread_Api3vG1OdmCVtRZkCTNg1QO5", + "created_at": 1761862006, + "run_id": "run_VbmS3P5mN1yaFqnv6dVm6xZy", + "assistant_id": "asst_iwqK9ZgKt97UAmtTte70BgKp", + "thread_id": "thread_FSZxF4oD9W3KVX68koAxUaJJ", "type": "message_creation", "status": "completed", "cancelled_at": null, - "completed_at": 1758062844, + "completed_at": 1761862009, "expires_at": null, "failed_at": null, "last_error": null, "step_details": { "type": "message_creation", "message_creation": { - "message_id": "msg_B6gSyB1dvTCcYjBxRl9YLr9H" + "message_id": "msg_luwuQhRa241JwwwI4qRIbG53" } }, "usage": { - "prompt_tokens": 227, - "completion_tokens": 58, - "total_tokens": 285, + "prompt_tokens": 229, + "completion_tokens": 47, + "total_tokens": 276, "prompt_token_details": { "cached_tokens": 0 }, @@ -2971,8 +1093,8 @@ } } ], - "first_id": "step_tgd8WgABgtvl3lXiySR2txXo", - "last_id": "step_tgd8WgABgtvl3lXiySR2txXo", + "first_id": "step_vD0Ec5anz1LSpXfpM6jMaQbj", + "last_id": "step_vD0Ec5anz1LSpXfpM6jMaQbj", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/SettingResponseFormatWorks.json b/tests/SessionRecords/AssistantsTests/SettingResponseFormatWorks.json index 7e634bdeb..745227edc 100644 --- a/tests/SessionRecords/AssistantsTests/SettingResponseFormatWorks.json +++ b/tests/SessionRecords/AssistantsTests/SettingResponseFormatWorks.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "48", + "Content-Length": "43", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "response_format": "auto" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cfd15dcfa334-SEA", + "CF-RAY": "996e322f0c9b08e3-SEA", "Connection": "keep-alive", - "Content-Length": "337", + "Content-Length": "332", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:03 GMT", + "Date": "Thu, 30 Oct 2025 22:02:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "665", + "openai-processing-ms": "182", "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": "723", + "x-envoy-upstream-service-time": "185", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_inySkLwZDf3Rqhw0PymJBTTN", + "id": "asst_lmHh31nj3iu1EBPXnXq16NFe", "object": "assistant", - "created_at": 1758061863, + "created_at": 1761861736, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -52,7 +53,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_inySkLwZDf3Rqhw0PymJBTTN", + "RequestUri": "https://api.openai.com/v1/assistants/asst_lmHh31nj3iu1EBPXnXq16NFe", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -60,7 +61,7 @@ "Content-Length": "35", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "response_format": { @@ -71,28 +72,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cfd679e8a334-SEA", + "CF-RAY": "996e3230ae3208e3-SEA", "Connection": "keep-alive", - "Content-Length": "355", + "Content-Length": "350", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:03 GMT", + "Date": "Thu, 30 Oct 2025 22:02:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "343", + "openai-processing-ms": "329", "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": "390", + "x-envoy-upstream-service-time": "333", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_inySkLwZDf3Rqhw0PymJBTTN", + "id": "asst_lmHh31nj3iu1EBPXnXq16NFe", "object": "assistant", - "created_at": 1758061863, + "created_at": 1761861736, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -113,38 +115,39 @@ "Authorization": "Sanitized", "Content-Length": "0", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803cfd98c69a334-SEA", + "CF-RAY": "996e3233489c08e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:04 GMT", + "Date": "Thu, 30 Oct 2025 22:02:17 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "132", + "openai-processing-ms": "147", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141", + "x-envoy-upstream-service-time": "150", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_0XI5DyzH0pEnF2WXuRvyWIjU", + "id": "thread_a98BwG780eC0s8fDpS5vj5hI", "object": "thread", - "created_at": 1758061863, + "created_at": 1761861737, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_0XI5DyzH0pEnF2WXuRvyWIjU/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_a98BwG780eC0s8fDpS5vj5hI/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -152,7 +155,7 @@ "Content-Length": "51", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -162,27 +165,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cfdaeda9a334-SEA", + "CF-RAY": "996e3234ba1808e3-SEA", "Connection": "keep-alive", "Content-Length": "397", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:04 GMT", + "Date": "Thu, 30 Oct 2025 22:02:18 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "315", + "openai-processing-ms": "336", "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": "341", + "x-envoy-upstream-service-time": "340", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_97x0oEEa9SClOPymD9t3W624", + "id": "msg_HOJibY8H38AB3j97Mbhq8OWX", "object": "thread.message", - "created_at": 1758061864, + "created_at": 1761861737, "assistant_id": null, - "thread_id": "thread_0XI5DyzH0pEnF2WXuRvyWIjU", + "thread_id": "thread_a98BwG780eC0s8fDpS5vj5hI", "run_id": null, "role": "user", "content": [ @@ -199,7 +203,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_0XI5DyzH0pEnF2WXuRvyWIjU/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_a98BwG780eC0s8fDpS5vj5hI/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -207,10 +211,10 @@ "Content-Length": "114", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_inySkLwZDf3Rqhw0PymJBTTN", + "assistant_id": "asst_lmHh31nj3iu1EBPXnXq16NFe", "additional_messages": [], "response_format": { "type": "json_object" @@ -220,36 +224,37 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cfdd9fbea334-SEA", + "CF-RAY": "996e32376cc508e3-SEA", "Connection": "keep-alive", - "Content-Length": "857", + "Content-Length": "852", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:05 GMT", + "Date": "Thu, 30 Oct 2025 22:02:19 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "877", + "openai-processing-ms": "1284", "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": "886", + "x-envoy-upstream-service-time": "1316", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_KGyk2lwywvGEbwDU21qItXLO", + "id": "run_tKtVNFna7KU1QfR63lyTjzdj", "object": "thread.run", - "created_at": 1758061865, - "assistant_id": "asst_inySkLwZDf3Rqhw0PymJBTTN", - "thread_id": "thread_0XI5DyzH0pEnF2WXuRvyWIjU", + "created_at": 1761861738, + "assistant_id": "asst_lmHh31nj3iu1EBPXnXq16NFe", + "thread_id": "thread_a98BwG780eC0s8fDpS5vj5hI", "status": "queued", "started_at": null, - "expires_at": 1758062465, + "expires_at": 1761862338, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, diff --git a/tests/SessionRecords/AssistantsTests/SettingResponseFormatWorksAsync.json b/tests/SessionRecords/AssistantsTests/SettingResponseFormatWorksAsync.json index 6ba6688d8..dcaef9791 100644 --- a/tests/SessionRecords/AssistantsTests/SettingResponseFormatWorksAsync.json +++ b/tests/SessionRecords/AssistantsTests/SettingResponseFormatWorksAsync.json @@ -6,41 +6,42 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "48", + "Content-Length": "43", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "response_format": "auto" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d5fabf5fa334-SEA", + "CF-RAY": "996e39024da308e3-SEA", "Connection": "keep-alive", - "Content-Length": "337", + "Content-Length": "332", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:15 GMT", + "Date": "Thu, 30 Oct 2025 22:06:56 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "302", + "openai-processing-ms": "428", "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": "343", + "x-envoy-upstream-service-time": "433", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_EgGdktRznGkarj4SMQ4ZHuHy", + "id": "asst_JthNqgyshOdiygnTxXY9P77d", "object": "assistant", - "created_at": 1758062115, + "created_at": 1761862016, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -52,7 +53,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/assistants/asst_EgGdktRznGkarj4SMQ4ZHuHy", + "RequestUri": "https://api.openai.com/v1/assistants/asst_JthNqgyshOdiygnTxXY9P77d", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -60,7 +61,7 @@ "Content-Length": "35", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "response_format": { @@ -71,28 +72,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d5fdaacda334-SEA", + "CF-RAY": "996e3905892f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "355", + "Content-Length": "350", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:16 GMT", + "Date": "Thu, 30 Oct 2025 22:06:57 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "749", + "openai-processing-ms": "285", "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": "757", + "x-envoy-upstream-service-time": "292", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_EgGdktRznGkarj4SMQ4ZHuHy", + "id": "asst_JthNqgyshOdiygnTxXY9P77d", "object": "assistant", - "created_at": 1758062115, + "created_at": 1761862016, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -113,38 +115,39 @@ "Authorization": "Sanitized", "Content-Length": "0", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d6034a11a334-SEA", + "CF-RAY": "996e3907fc2a08e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:16 GMT", + "Date": "Thu, 30 Oct 2025 22:06:57 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "242", + "openai-processing-ms": "286", "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": "282", + "x-envoy-upstream-service-time": "291", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_5pUPMWKF8VxaJikOi0xPeYao", + "id": "thread_kEoLYKtQuTCe4emVm31dgKNC", "object": "thread", - "created_at": 1758062116, + "created_at": 1761862017, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_5pUPMWKF8VxaJikOi0xPeYao/messages", + "RequestUri": "https://api.openai.com/v1/threads/thread_kEoLYKtQuTCe4emVm31dgKNC/messages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -152,7 +155,7 @@ "Content-Length": "51", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "role": "user", @@ -162,27 +165,28 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d605bd1ca334-SEA", + "CF-RAY": "996e390a6f0708e3-SEA", "Connection": "keep-alive", "Content-Length": "397", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:17 GMT", + "Date": "Thu, 30 Oct 2025 22:06:57 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "245", + "openai-processing-ms": "207", "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": "249", + "x-envoy-upstream-service-time": "211", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "msg_O2S212lgerQgycAZvgd1kb3g", + "id": "msg_muX2AVvqhEeLiij5TnSsVmqc", "object": "thread.message", - "created_at": 1758062116, + "created_at": 1761862017, "assistant_id": null, - "thread_id": "thread_5pUPMWKF8VxaJikOi0xPeYao", + "thread_id": "thread_kEoLYKtQuTCe4emVm31dgKNC", "run_id": null, "role": "user", "content": [ @@ -199,7 +203,7 @@ } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_5pUPMWKF8VxaJikOi0xPeYao/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_kEoLYKtQuTCe4emVm31dgKNC/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -207,10 +211,10 @@ "Content-Length": "114", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_EgGdktRznGkarj4SMQ4ZHuHy", + "assistant_id": "asst_JthNqgyshOdiygnTxXY9P77d", "additional_messages": [], "response_format": { "type": "json_object" @@ -220,36 +224,37 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d607df95a334-SEA", + "CF-RAY": "996e390c493208e3-SEA", "Connection": "keep-alive", - "Content-Length": "857", + "Content-Length": "852", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:18 GMT", + "Date": "Thu, 30 Oct 2025 22:06:58 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1614", + "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": "1642", + "x-envoy-upstream-service-time": "891", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "run_QmcLgoKCEscJHlmX3EnrDpJz", + "id": "run_ZTTKwWHU0V1cQ27luFkvmwYd", "object": "thread.run", - "created_at": 1758062117, - "assistant_id": "asst_EgGdktRznGkarj4SMQ4ZHuHy", - "thread_id": "thread_5pUPMWKF8VxaJikOi0xPeYao", + "created_at": 1761862018, + "assistant_id": "asst_JthNqgyshOdiygnTxXY9P77d", + "thread_id": "thread_kEoLYKtQuTCe4emVm31dgKNC", "status": "queued", "started_at": null, - "expires_at": 1758062717, + "expires_at": 1761862618, "cancelled_at": null, "failed_at": null, "completed_at": null, "required_action": null, "last_error": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "tool_resources": {}, diff --git a/tests/SessionRecords/AssistantsTests/StreamingRunWorks.json b/tests/SessionRecords/AssistantsTests/StreamingRunWorks.json index d2a95f681..b16266878 100644 --- a/tests/SessionRecords/AssistantsTests/StreamingRunWorks.json +++ b/tests/SessionRecords/AssistantsTests/StreamingRunWorks.json @@ -6,40 +6,41 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "23", + "Content-Length": "18", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini" + "model": "gpt-4o" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cfe3ecefa334-SEA", + "CF-RAY": "996e32408dd908e3-SEA", "Connection": "keep-alive", - "Content-Length": "337", + "Content-Length": "332", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:06 GMT", + "Date": "Thu, 30 Oct 2025 22:02:20 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "310", + "openai-processing-ms": "321", "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": "331", + "x-envoy-upstream-service-time": "325", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_NrALk4kduMBidecPo0MG6TYu", + "id": "asst_0VLdyfoSMFV4tQpzWUT2ywhg", "object": "assistant", - "created_at": 1758061865, + "created_at": 1761861739, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -59,7 +60,7 @@ "Content-Length": "85", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -73,31 +74,32 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cfe69f25a334-SEA", + "CF-RAY": "996e3243184708e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:06 GMT", + "Date": "Thu, 30 Oct 2025 22:02:20 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "396", + "openai-processing-ms": "423", "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": "405", + "x-envoy-upstream-service-time": "430", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_0XCRPcpVfWZUdNMZvj0WcMj4", + "id": "thread_Wq2ScOs1iInUsyhUUDmN5NZH", "object": "thread", - "created_at": 1758061866, + "created_at": 1761861740, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_0XCRPcpVfWZUdNMZvj0WcMj4/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_Wq2ScOs1iInUsyhUUDmN5NZH/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -105,10 +107,10 @@ "Content-Length": "87", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_NrALk4kduMBidecPo0MG6TYu", + "assistant_id": "asst_0VLdyfoSMFV4tQpzWUT2ywhg", "additional_messages": [], "stream": true }, @@ -116,88 +118,109 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803cfe9b9a1a334-SEA", + "CF-RAY": "996e32465bce08e3-SEA", "Connection": "keep-alive", "Content-Type": "text/event-stream; charset=utf-8", - "Date": "Tue, 16 Sep 2025 22:31:07 GMT", + "Date": "Thu, 30 Oct 2025 22:02:24 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1303", + "openai-processing-ms": "4031", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1307", + "x-envoy-upstream-service-time": "4212", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": [ "event: thread.run.created\n", - "data: {\"id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"object\":\"thread.run\",\"created_at\":1758061867,\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758062467,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"object\":\"thread.run\",\"created_at\":1761861742,\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862342,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.queued\n", - "data: {\"id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"object\":\"thread.run\",\"created_at\":1758061867,\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758062467,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"object\":\"thread.run\",\"created_at\":1761861742,\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862342,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.in_progress\n", - "data: {\"id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"object\":\"thread.run\",\"created_at\":1758061867,\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"status\":\"in_progress\",\"started_at\":1758061868,\"expires_at\":1758062467,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"object\":\"thread.run\",\"created_at\":1761861742,\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"status\":\"in_progress\",\"started_at\":1761861744,\"expires_at\":1761862342,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_OYL8jTeav7SnCtJRB7Agx62u\",\"object\":\"thread.run.step\",\"created_at\":1758061868,\"run_id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062467,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_MVHqdoguIjNIUNR3cl1ks8ka\",\"object\":\"thread.run.step\",\"created_at\":1761861745,\"run_id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862342,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\"}},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_OYL8jTeav7SnCtJRB7Agx62u\",\"object\":\"thread.run.step\",\"created_at\":1758061868,\"run_id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062467,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_MVHqdoguIjNIUNR3cl1ks8ka\",\"object\":\"thread.run.step\",\"created_at\":1761861745,\"run_id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862342,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\"}},\"usage\":null}\n\n", "event: thread.message.created\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message\",\"created_at\":1758061868,\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"run_id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message\",\"created_at\":1761861745,\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"run_id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.in_progress\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message\",\"created_at\":1758061868,\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"run_id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message\",\"created_at\":1761861745,\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"run_id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Hello\",\"annotations\":[]}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Hello\",\"annotations\":[]}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I'm\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I'm\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" just\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" just\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" program\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" program\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" but\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" so\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I'm\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" here\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" don't\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" have\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" ready\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" feelings\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" to\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" help\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" but\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I'm\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" here\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" How\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" can\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" ready\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" to\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" assist\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" help\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" today\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" with\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"?\"}}]}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" whatever\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" need\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" How\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" can\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" assist\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" today\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"?\"}}]}}\n\n", "event: thread.message.completed\n", - "data: {\"id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\",\"object\":\"thread.message\",\"created_at\":1758061868,\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"run_id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1758061869,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Hello! I'm just a program, but I'm here and ready to help you. How can I assist you today?\",\"annotations\":[]}}],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\",\"object\":\"thread.message\",\"created_at\":1761861745,\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"run_id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1761861746,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Hello! I'm just a program, so I don't have feelings, but I'm here and ready to help you with whatever you need. How can I assist you today?\",\"annotations\":[]}}],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.run.step.completed\n", - "data: {\"id\":\"step_OYL8jTeav7SnCtJRB7Agx62u\",\"object\":\"thread.run.step\",\"created_at\":1758061868,\"run_id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758061869,\"expires_at\":1758062467,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_Ne6r05mC8KlkkldqPpcSfCpM\"}},\"usage\":{\"prompt_tokens\":38,\"completion_tokens\":25,\"total_tokens\":63,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_MVHqdoguIjNIUNR3cl1ks8ka\",\"object\":\"thread.run.step\",\"created_at\":1761861745,\"run_id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861746,\"expires_at\":1761862342,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_Tn5DNmiQEPZ80biW5AukKrvH\"}},\"usage\":{\"prompt_tokens\":38,\"completion_tokens\":35,\"total_tokens\":73,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.completed\n", - "data: {\"id\":\"run_3lbutJgnPRGY1BDfkjgm2IRR\",\"object\":\"thread.run\",\"created_at\":1758061867,\"assistant_id\":\"asst_NrALk4kduMBidecPo0MG6TYu\",\"thread_id\":\"thread_0XCRPcpVfWZUdNMZvj0WcMj4\",\"status\":\"completed\",\"started_at\":1758061868,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1758061869,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":38,\"completion_tokens\":25,\"total_tokens\":63,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_Uy45lNz2P7BpJcqWzQkXl1Bu\",\"object\":\"thread.run\",\"created_at\":1761861742,\"assistant_id\":\"asst_0VLdyfoSMFV4tQpzWUT2ywhg\",\"thread_id\":\"thread_Wq2ScOs1iInUsyhUUDmN5NZH\",\"status\":\"completed\",\"started_at\":1761861744,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1761861747,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":38,\"completion_tokens\":35,\"total_tokens\":73,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: done\n", "data: [DONE]\n\n" ] diff --git a/tests/SessionRecords/AssistantsTests/StreamingRunWorksAsync.json b/tests/SessionRecords/AssistantsTests/StreamingRunWorksAsync.json index aba5ddaef..b39646691 100644 --- a/tests/SessionRecords/AssistantsTests/StreamingRunWorksAsync.json +++ b/tests/SessionRecords/AssistantsTests/StreamingRunWorksAsync.json @@ -6,40 +6,41 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "23", + "Content-Length": "18", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini" + "model": "gpt-4o" }, "StatusCode": 200, "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d6131e52a334-SEA", + "CF-RAY": "996e3912c87008e3-SEA", "Connection": "keep-alive", - "Content-Length": "337", + "Content-Length": "332", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:19 GMT", + "Date": "Thu, 30 Oct 2025 22:06:59 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "190", + "openai-processing-ms": "285", "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": "194", + "x-envoy-upstream-service-time": "288", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_Rm89lr91SshdOuKVcK2Dmzdb", + "id": "asst_qtgI42SHEl4Tc0GVq4fBoyVX", "object": "assistant", - "created_at": 1758062119, + "created_at": 1761862019, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [], "top_p": 1.0, @@ -59,7 +60,7 @@ "Content-Length": "85", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -73,31 +74,32 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d614d8d8a334-SEA", + "CF-RAY": "996e39151b0c08e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:19 GMT", + "Date": "Thu, 30 Oct 2025 22:06:59 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "635", + "openai-processing-ms": "428", "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": "657", + "x-envoy-upstream-service-time": "434", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_GoKwjNtUmlNmbP0D1AueifF6", + "id": "thread_SkB4C5yOG0mpvmUuXXULFo06", "object": "thread", - "created_at": 1758062119, + "created_at": 1761862019, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_GoKwjNtUmlNmbP0D1AueifF6/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", + "RequestUri": "https://api.openai.com/v1/threads/thread_SkB4C5yOG0mpvmUuXXULFo06/runs?include[]=step_details.tool_calls%5B%2A%5D.file_search.results%5B%2A%5D.content", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -105,10 +107,10 @@ "Content-Length": "87", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_Rm89lr91SshdOuKVcK2Dmzdb", + "assistant_id": "asst_qtgI42SHEl4Tc0GVq4fBoyVX", "additional_messages": [], "stream": true }, @@ -116,88 +118,85 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d6198ec3a334-SEA", + "CF-RAY": "996e39185ecb08e3-SEA", "Connection": "keep-alive", "Content-Type": "text/event-stream; charset=utf-8", - "Date": "Tue, 16 Sep 2025 22:35:22 GMT", + "Date": "Thu, 30 Oct 2025 22:07:01 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "2130", + "openai-processing-ms": "1187", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2193", + "x-envoy-upstream-service-time": "1191", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": [ "event: thread.run.created\n", - "data: {\"id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"object\":\"thread.run\",\"created_at\":1758062120,\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758062720,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"object\":\"thread.run\",\"created_at\":1761862020,\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862620,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.queued\n", - "data: {\"id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"object\":\"thread.run\",\"created_at\":1758062120,\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758062720,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"object\":\"thread.run\",\"created_at\":1761862020,\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862620,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.in_progress\n", - "data: {\"id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"object\":\"thread.run\",\"created_at\":1758062120,\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"status\":\"in_progress\",\"started_at\":1758062122,\"expires_at\":1758062720,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"object\":\"thread.run\",\"created_at\":1761862020,\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"status\":\"in_progress\",\"started_at\":1761862021,\"expires_at\":1761862620,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_VuaCHXA9C7896m9OQMweB1h3\",\"object\":\"thread.run.step\",\"created_at\":1758062123,\"run_id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062720,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_3p0EMo9k3hWCNo5t80GaLtYK\",\"object\":\"thread.run.step\",\"created_at\":1761862022,\"run_id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862620,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\"}},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_VuaCHXA9C7896m9OQMweB1h3\",\"object\":\"thread.run.step\",\"created_at\":1758062123,\"run_id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062720,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_3p0EMo9k3hWCNo5t80GaLtYK\",\"object\":\"thread.run.step\",\"created_at\":1761862022,\"run_id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862620,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\"}},\"usage\":null}\n\n", "event: thread.message.created\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message\",\"created_at\":1758062123,\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"run_id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message\",\"created_at\":1761862022,\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"run_id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.in_progress\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message\",\"created_at\":1758062123,\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"run_id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message\",\"created_at\":1761862022,\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"run_id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Hello\",\"annotations\":[]}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Hello\",\"annotations\":[]}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I'm\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I'm\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" just\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" here\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" program\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" ready\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" to\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" but\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" help\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I'm\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" here\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" with\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" anything\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" ready\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" to\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" need\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" help\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" How\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" can\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" How\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" can\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" assist\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" assist\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" today\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" today\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"?\"}}]}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"?\"}}]}}\n\n", "event: thread.message.completed\n", - "data: {\"id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\",\"object\":\"thread.message\",\"created_at\":1758062123,\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"run_id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1758062124,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Hello! I'm just a program, but I'm here and ready to help you. How can I assist you today?\",\"annotations\":[]}}],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\",\"object\":\"thread.message\",\"created_at\":1761862022,\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"run_id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1761862023,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Hello! I'm here and ready to help you with anything you need. How can I assist you today?\",\"annotations\":[]}}],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.run.step.completed\n", - "data: {\"id\":\"step_VuaCHXA9C7896m9OQMweB1h3\",\"object\":\"thread.run.step\",\"created_at\":1758062123,\"run_id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758062124,\"expires_at\":1758062720,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_WdRzpfC6GOzaGJsMdOImvk2N\"}},\"usage\":{\"prompt_tokens\":38,\"completion_tokens\":25,\"total_tokens\":63,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_3p0EMo9k3hWCNo5t80GaLtYK\",\"object\":\"thread.run.step\",\"created_at\":1761862022,\"run_id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761862023,\"expires_at\":1761862620,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_JCSTgSDq1vYBuf5ADq6k4ORd\"}},\"usage\":{\"prompt_tokens\":38,\"completion_tokens\":23,\"total_tokens\":61,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.completed\n", - "data: {\"id\":\"run_PJLTZvdEjnrx6NW5wRnQXO9n\",\"object\":\"thread.run\",\"created_at\":1758062120,\"assistant_id\":\"asst_Rm89lr91SshdOuKVcK2Dmzdb\",\"thread_id\":\"thread_GoKwjNtUmlNmbP0D1AueifF6\",\"status\":\"completed\",\"started_at\":1758062122,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1758062124,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":38,\"completion_tokens\":25,\"total_tokens\":63,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_vTjp2ichhvmAcs8OfKVGjRLd\",\"object\":\"thread.run\",\"created_at\":1761862020,\"assistant_id\":\"asst_qtgI42SHEl4Tc0GVq4fBoyVX\",\"thread_id\":\"thread_SkB4C5yOG0mpvmUuXXULFo06\",\"status\":\"completed\",\"started_at\":1761862021,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1761862023,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":38,\"completion_tokens\":23,\"total_tokens\":61,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: done\n", "data: [DONE]\n\n" ] diff --git a/tests/SessionRecords/AssistantsTests/StreamingToolCall().json b/tests/SessionRecords/AssistantsTests/StreamingToolCall().json index 7c85f140e..11d8ee414 100644 --- a/tests/SessionRecords/AssistantsTests/StreamingToolCall().json +++ b/tests/SessionRecords/AssistantsTests/StreamingToolCall().json @@ -6,13 +6,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "143", + "Content-Length": "138", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "tools": [ { "type": "function", @@ -27,13 +27,13 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca170cdfa334-SEA", + "CF-RAY": "996e2d193e4f08e3-SEA", "Connection": "keep-alive", - "Content-Length": "617", + "Content-Length": "612", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:27:08 GMT", + "Date": "Thu, 30 Oct 2025 21:58:50 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "598", + "openai-processing-ms": "2170", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", @@ -43,16 +43,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "706", + "x-envoy-upstream-service-time": "2388", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_nI7dfdsVjTiLR2j0rVC6szM8", + "id": "asst_BFMmpHsel3a7MuFuKKY9i5uG", "object": "assistant", - "created_at": 1758061628, + "created_at": 1761861530, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -85,10 +86,10 @@ "Content-Length": "152", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_nI7dfdsVjTiLR2j0rVC6szM8", + "assistant_id": "asst_BFMmpHsel3a7MuFuKKY9i5uG", "thread": { "messages": [ { @@ -103,46 +104,47 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca1cb90aa334-SEA", + "CF-RAY": "996e2d294f7808e3-SEA", "Connection": "keep-alive", "Content-Type": "text/event-stream; charset=utf-8", - "Date": "Tue, 16 Sep 2025 22:27:09 GMT", + "Date": "Thu, 30 Oct 2025 21:58:52 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "868", + "openai-processing-ms": "851", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "871", + "x-envoy-upstream-service-time": "862", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": [ "event: thread.created\n", - "data: {\"id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"object\":\"thread\",\"created_at\":1758061629,\"metadata\":{},\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}}}\n\n", + "data: {\"id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"object\":\"thread\",\"created_at\":1761861531,\"metadata\":{},\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}}}\n\n", "event: thread.run.created\n", - "data: {\"id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"object\":\"thread.run\",\"created_at\":1758061629,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758062229,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"object\":\"thread.run\",\"created_at\":1761861531,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862131,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.queued\n", - "data: {\"id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"object\":\"thread.run\",\"created_at\":1758061629,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758062229,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"object\":\"thread.run\",\"created_at\":1761861531,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862131,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.in_progress\n", - "data: {\"id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"object\":\"thread.run\",\"created_at\":1758061629,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"status\":\"in_progress\",\"started_at\":1758061631,\"expires_at\":1758062229,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"object\":\"thread.run\",\"created_at\":1761861531,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"status\":\"in_progress\",\"started_at\":1761861532,\"expires_at\":1761862131,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_Wp7GaWj01zF8JE5noXSBxYVd\",\"object\":\"thread.run.step\",\"created_at\":1758061632,\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062229,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", + "data: {\"id\":\"step_9c9pSsTIsCYc1KeHEI6Ba34s\",\"object\":\"thread.run.step\",\"created_at\":1761861533,\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862131,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_Wp7GaWj01zF8JE5noXSBxYVd\",\"object\":\"thread.run.step\",\"created_at\":1758061632,\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062229,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", + "data: {\"id\":\"step_9c9pSsTIsCYc1KeHEI6Ba34s\",\"object\":\"thread.run.step\",\"created_at\":1761861533,\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862131,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", "event: thread.run.step.delta\n", - "data: {\"id\":\"step_Wp7GaWj01zF8JE5noXSBxYVd\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"id\":\"call_ns14VV96bsL117lURHoW4hDB\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"\",\"output\":null}}]}}}\n\n", + "data: {\"id\":\"step_9c9pSsTIsCYc1KeHEI6Ba34s\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"id\":\"call_xyFYaEeyocjyE6jN64QTcxip\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"\",\"output\":null}}]}}}\n\n", "event: thread.run.step.delta\n", - "data: {\"id\":\"step_Wp7GaWj01zF8JE5noXSBxYVd\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"type\":\"function\",\"function\":{\"arguments\":\"{}\"}}]}}}\n\n", + "data: {\"id\":\"step_9c9pSsTIsCYc1KeHEI6Ba34s\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"type\":\"function\",\"function\":{\"arguments\":\"{}\"}}]}}}\n\n", "event: thread.run.requires_action\n", - "data: {\"id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"object\":\"thread.run\",\"created_at\":1758061629,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"status\":\"requires_action\",\"started_at\":1758061631,\"expires_at\":1758062229,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":{\"type\":\"submit_tool_outputs\",\"submit_tool_outputs\":{\"tool_calls\":[{\"id\":\"call_ns14VV96bsL117lURHoW4hDB\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"{}\"}}]}},\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"object\":\"thread.run\",\"created_at\":1761861531,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"status\":\"requires_action\",\"started_at\":1761861532,\"expires_at\":1761862131,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":{\"type\":\"submit_tool_outputs\",\"submit_tool_outputs\":{\"tool_calls\":[{\"id\":\"call_xyFYaEeyocjyE6jN64QTcxip\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"{}\"}}]}},\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: done\n", "data: [DONE]\n\n" ] }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_iDgA3KZUmnQVLR8BnBeWHL9Q/runs/run_D5jAS7GPAMpI3FFIfN0Wjner/submit_tool_outputs", + "RequestUri": "https://api.openai.com/v1/threads/thread_6oUGUBxLwhyApwhYBhWjHI5f/runs/run_oyfV44CrJXYJkvb2qsd80LvJ/submit_tool_outputs", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -150,12 +152,12 @@ "Content-Length": "107", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "tool_outputs": [ { - "tool_call_id": "call_ns14VV96bsL117lURHoW4hDB", + "tool_call_id": "call_xyFYaEeyocjyE6jN64QTcxip", "output": "warm and sunny" } ], @@ -165,180 +167,123 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803ca3a4a8ca334-SEA", + "CF-RAY": "996e2d3c4a4c08e3-SEA", "Connection": "keep-alive", "Content-Type": "text/event-stream; charset=utf-8", - "Date": "Tue, 16 Sep 2025 22:27:14 GMT", + "Date": "Thu, 30 Oct 2025 21:58:54 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "381", + "openai-processing-ms": "279", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "399", + "x-envoy-upstream-service-time": "308", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": [ "event: thread.run.step.completed\n", - "data: {\"id\":\"step_Wp7GaWj01zF8JE5noXSBxYVd\",\"object\":\"thread.run.step\",\"created_at\":1758061632,\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"type\":\"tool_calls\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758061633,\"expires_at\":1758062229,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"id\":\"call_ns14VV96bsL117lURHoW4hDB\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"{}\",\"output\":\"warm and sunny\"}}]},\"usage\":{\"prompt_tokens\":260,\"completion_tokens\":12,\"total_tokens\":272,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_9c9pSsTIsCYc1KeHEI6Ba34s\",\"object\":\"thread.run.step\",\"created_at\":1761861533,\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"type\":\"tool_calls\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861534,\"expires_at\":1761862131,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"id\":\"call_xyFYaEeyocjyE6jN64QTcxip\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"{}\",\"output\":\"warm and sunny\"}}]},\"usage\":{\"prompt_tokens\":260,\"completion_tokens\":12,\"total_tokens\":272,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.queued\n", - "data: {\"id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"object\":\"thread.run\",\"created_at\":1758061629,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"status\":\"queued\",\"started_at\":1758061631,\"expires_at\":1758062229,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"object\":\"thread.run\",\"created_at\":1761861531,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"status\":\"queued\",\"started_at\":1761861532,\"expires_at\":1761862131,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.in_progress\n", - "data: {\"id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"object\":\"thread.run\",\"created_at\":1758061629,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"status\":\"in_progress\",\"started_at\":1758061637,\"expires_at\":1758062229,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"object\":\"thread.run\",\"created_at\":1761861531,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"status\":\"in_progress\",\"started_at\":1761861535,\"expires_at\":1761862131,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_99dyDNSkdG8WFE3FUxaSgWo5\",\"object\":\"thread.run.step\",\"created_at\":1758061638,\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062229,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_Ou0TFVL8JOSRggWUqsOvtr70\",\"object\":\"thread.run.step\",\"created_at\":1761861535,\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862131,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\"}},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_99dyDNSkdG8WFE3FUxaSgWo5\",\"object\":\"thread.run.step\",\"created_at\":1758061638,\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062229,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_Ou0TFVL8JOSRggWUqsOvtr70\",\"object\":\"thread.run.step\",\"created_at\":1761861535,\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862131,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\"}},\"usage\":null}\n\n", "event: thread.message.created\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message\",\"created_at\":1758061638,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message\",\"created_at\":1761861535,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.in_progress\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message\",\"created_at\":1758061638,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message\",\"created_at\":1761861535,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Since\",\"annotations\":[]}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Since\",\"annotations\":[]}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" it's\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" it's\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" warm\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" warm\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunny\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunny\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" outside\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" outside\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" might\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" should\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" consider\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" consider\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" wearing\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" wearing\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" light\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" lightweight\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" breathable\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" breathable\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" clothing\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" clothing\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" such\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Here\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" as\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" are\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" some\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" t\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" suggestions\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-shirt\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\":\\n\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" shorts\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" A\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" short\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-s\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"lee\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" light\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"ve\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" dress\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" shirt\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Don't\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" tank\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" forget\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" top\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunglasses\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunscreen\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Shorts\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" to\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" protect\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" yourself\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" light\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" from\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" skirt\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" the\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sun\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Sung\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"lasses\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" hat\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" for\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sun\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" protection\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Comfortable\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sandals\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sneakers\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\\n\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Don\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"’t\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" forget\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunscreen\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" if\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"’ll\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" be\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" outside\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" for\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" an\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" extended\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" period\"}}]}}\n\n", - "event: thread.message.delta\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\"}}]}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\"}}]}}\n\n", "event: thread.message.completed\n", - "data: {\"id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\",\"object\":\"thread.message\",\"created_at\":1758061638,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1758061639,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Since it's warm and sunny outside, you might consider wearing light and breathable clothing. Here are some suggestions:\\n\\n- A short-sleeve shirt or tank top\\n- Shorts or a light skirt\\n- Sunglasses and a hat for sun protection\\n- Comfortable sandals or sneakers\\n\\nDon’t forget sunscreen if you’ll be outside for an extended period!\",\"annotations\":[]}}],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\",\"object\":\"thread.message\",\"created_at\":1761861535,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1761861536,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Since it's warm and sunny outside, you should consider wearing lightweight, breathable clothing such as a t-shirt, shorts, or a light dress. Don't forget sunglasses and sunscreen to protect yourself from the sun!\",\"annotations\":[]}}],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.run.step.completed\n", - "data: {\"id\":\"step_99dyDNSkdG8WFE3FUxaSgWo5\",\"object\":\"thread.run.step\",\"created_at\":1758061638,\"run_id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758061639,\"expires_at\":1758062229,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_dE3DRikyIL9Weo4c9u1QgWhr\"}},\"usage\":{\"prompt_tokens\":284,\"completion_tokens\":71,\"total_tokens\":355,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_Ou0TFVL8JOSRggWUqsOvtr70\",\"object\":\"thread.run.step\",\"created_at\":1761861535,\"run_id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861536,\"expires_at\":1761862131,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_kSkj4ryQchn1MSwL3I2N0uWV\"}},\"usage\":{\"prompt_tokens\":284,\"completion_tokens\":42,\"total_tokens\":326,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.completed\n", - "data: {\"id\":\"run_D5jAS7GPAMpI3FFIfN0Wjner\",\"object\":\"thread.run\",\"created_at\":1758061629,\"assistant_id\":\"asst_nI7dfdsVjTiLR2j0rVC6szM8\",\"thread_id\":\"thread_iDgA3KZUmnQVLR8BnBeWHL9Q\",\"status\":\"completed\",\"started_at\":1758061637,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1758061639,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":544,\"completion_tokens\":83,\"total_tokens\":627,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_oyfV44CrJXYJkvb2qsd80LvJ\",\"object\":\"thread.run\",\"created_at\":1761861531,\"assistant_id\":\"asst_BFMmpHsel3a7MuFuKKY9i5uG\",\"thread_id\":\"thread_6oUGUBxLwhyApwhYBhWjHI5f\",\"status\":\"completed\",\"started_at\":1761861535,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1761861536,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":544,\"completion_tokens\":54,\"total_tokens\":598,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: done\n", "data: [DONE]\n\n" ] diff --git a/tests/SessionRecords/AssistantsTests/StreamingToolCall()Async.json b/tests/SessionRecords/AssistantsTests/StreamingToolCall()Async.json index 142fb0912..4f9c1e0ff 100644 --- a/tests/SessionRecords/AssistantsTests/StreamingToolCall()Async.json +++ b/tests/SessionRecords/AssistantsTests/StreamingToolCall()Async.json @@ -6,13 +6,13 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "143", + "Content-Length": "138", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "model": "gpt-4o-mini", + "model": "gpt-4o", "tools": [ { "type": "function", @@ -27,28 +27,29 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d15399caa334-SEA", + "CF-RAY": "996e33d77f0508e3-SEA", "Connection": "keep-alive", - "Content-Length": "617", + "Content-Length": "612", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:32:04 GMT", + "Date": "Thu, 30 Oct 2025 22:03:25 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "148", + "openai-processing-ms": "268", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150", + "x-envoy-upstream-service-time": "281", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "asst_oq7Dtuk1vCVMs2I8FWywA53X", + "id": "asst_CfJdd8d7FTaC8peLEVJDY9Vu", "object": "assistant", - "created_at": 1758061924, + "created_at": 1761861804, "name": null, "description": null, - "model": "gpt-4o-mini", + "model": "gpt-4o", "instructions": null, "tools": [ { @@ -81,10 +82,10 @@ "Content-Length": "152", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { - "assistant_id": "asst_oq7Dtuk1vCVMs2I8FWywA53X", + "assistant_id": "asst_CfJdd8d7FTaC8peLEVJDY9Vu", "thread": { "messages": [ { @@ -99,46 +100,47 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d1551af1a334-SEA", + "CF-RAY": "996e33d9c90208e3-SEA", "Connection": "keep-alive", "Content-Type": "text/event-stream; charset=utf-8", - "Date": "Tue, 16 Sep 2025 22:32:05 GMT", + "Date": "Thu, 30 Oct 2025 22:03:26 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "929", + "openai-processing-ms": "832", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "932", + "x-envoy-upstream-service-time": "845", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": [ "event: thread.created\n", - "data: {\"id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"object\":\"thread\",\"created_at\":1758061924,\"metadata\":{},\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}}}\n\n", + "data: {\"id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"object\":\"thread\",\"created_at\":1761861805,\"metadata\":{},\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}}}\n\n", "event: thread.run.created\n", - "data: {\"id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"object\":\"thread.run\",\"created_at\":1758061925,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758062525,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"object\":\"thread.run\",\"created_at\":1761861805,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862405,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.queued\n", - "data: {\"id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"object\":\"thread.run\",\"created_at\":1758061925,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1758062525,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"object\":\"thread.run\",\"created_at\":1761861805,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"status\":\"queued\",\"started_at\":null,\"expires_at\":1761862405,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.in_progress\n", - "data: {\"id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"object\":\"thread.run\",\"created_at\":1758061925,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"status\":\"in_progress\",\"started_at\":1758061926,\"expires_at\":1758062525,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"object\":\"thread.run\",\"created_at\":1761861805,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"status\":\"in_progress\",\"started_at\":1761861807,\"expires_at\":1761862405,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_lrDpLxrCYt5hXCOY83POzllb\",\"object\":\"thread.run.step\",\"created_at\":1758061927,\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062525,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", + "data: {\"id\":\"step_MY9dNKKTSrvmOPKiccThKMqm\",\"object\":\"thread.run.step\",\"created_at\":1761861807,\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862405,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_lrDpLxrCYt5hXCOY83POzllb\",\"object\":\"thread.run.step\",\"created_at\":1758061927,\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062525,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", + "data: {\"id\":\"step_MY9dNKKTSrvmOPKiccThKMqm\",\"object\":\"thread.run.step\",\"created_at\":1761861807,\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"type\":\"tool_calls\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862405,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[]},\"usage\":null}\n\n", "event: thread.run.step.delta\n", - "data: {\"id\":\"step_lrDpLxrCYt5hXCOY83POzllb\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"id\":\"call_LVa5iF6MpQAlR9F9a9wjwTWt\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"\",\"output\":null}}]}}}\n\n", + "data: {\"id\":\"step_MY9dNKKTSrvmOPKiccThKMqm\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"id\":\"call_KGyjroZ2W1dWWewa4n6I1GMQ\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"\",\"output\":null}}]}}}\n\n", "event: thread.run.step.delta\n", - "data: {\"id\":\"step_lrDpLxrCYt5hXCOY83POzllb\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"type\":\"function\",\"function\":{\"arguments\":\"{}\"}}]}}}\n\n", + "data: {\"id\":\"step_MY9dNKKTSrvmOPKiccThKMqm\",\"object\":\"thread.run.step.delta\",\"delta\":{\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"index\":0,\"type\":\"function\",\"function\":{\"arguments\":\"{}\"}}]}}}\n\n", "event: thread.run.requires_action\n", - "data: {\"id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"object\":\"thread.run\",\"created_at\":1758061925,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"status\":\"requires_action\",\"started_at\":1758061926,\"expires_at\":1758062525,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":{\"type\":\"submit_tool_outputs\",\"submit_tool_outputs\":{\"tool_calls\":[{\"id\":\"call_LVa5iF6MpQAlR9F9a9wjwTWt\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"{}\"}}]}},\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"object\":\"thread.run\",\"created_at\":1761861805,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"status\":\"requires_action\",\"started_at\":1761861807,\"expires_at\":1761862405,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":{\"type\":\"submit_tool_outputs\",\"submit_tool_outputs\":{\"tool_calls\":[{\"id\":\"call_KGyjroZ2W1dWWewa4n6I1GMQ\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"{}\"}}]}},\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: done\n", "data: [DONE]\n\n" ] }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_jy9yFFfyHaZxbrjrQLc55usz/runs/run_gI8DZan1GwDyQO1etcR1iTGH/submit_tool_outputs", + "RequestUri": "https://api.openai.com/v1/threads/thread_OZwGwntjVwYN6Yn8XziurXOb/runs/run_8ah3cPLah1CcGUU9EXDOBauJ/submit_tool_outputs", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/event-stream", @@ -146,12 +148,12 @@ "Content-Length": "107", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "tool_outputs": [ { - "tool_call_id": "call_LVa5iF6MpQAlR9F9a9wjwTWt", + "tool_call_id": "call_KGyjroZ2W1dWWewa4n6I1GMQ", "output": "warm and sunny" } ], @@ -161,184 +163,199 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d168cbd2a334-SEA", + "CF-RAY": "996e33ef197708e3-SEA", "Connection": "keep-alive", "Content-Type": "text/event-stream; charset=utf-8", - "Date": "Tue, 16 Sep 2025 22:32:09 GMT", + "Date": "Thu, 30 Oct 2025 22:03:28 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1548", + "openai-processing-ms": "395", "openai-project": "Sanitized", "openai-version": "2020-10-01", "Server": "cloudflare", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1585", + "x-envoy-upstream-service-time": "401", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": [ "event: thread.run.step.completed\n", - "data: {\"id\":\"step_lrDpLxrCYt5hXCOY83POzllb\",\"object\":\"thread.run.step\",\"created_at\":1758061927,\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"type\":\"tool_calls\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758061929,\"expires_at\":1758062525,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"id\":\"call_LVa5iF6MpQAlR9F9a9wjwTWt\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"{}\",\"output\":\"warm and sunny\"}}]},\"usage\":{\"prompt_tokens\":260,\"completion_tokens\":12,\"total_tokens\":272,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_MY9dNKKTSrvmOPKiccThKMqm\",\"object\":\"thread.run.step\",\"created_at\":1761861807,\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"type\":\"tool_calls\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861808,\"expires_at\":1761862405,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"tool_calls\",\"tool_calls\":[{\"id\":\"call_KGyjroZ2W1dWWewa4n6I1GMQ\",\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"arguments\":\"{}\",\"output\":\"warm and sunny\"}}]},\"usage\":{\"prompt_tokens\":260,\"completion_tokens\":12,\"total_tokens\":272,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.queued\n", - "data: {\"id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"object\":\"thread.run\",\"created_at\":1758061925,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"status\":\"queued\",\"started_at\":1758061926,\"expires_at\":1758062525,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"object\":\"thread.run\",\"created_at\":1761861805,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"status\":\"queued\",\"started_at\":1761861807,\"expires_at\":1761862405,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.in_progress\n", - "data: {\"id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"object\":\"thread.run\",\"created_at\":1758061925,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"status\":\"in_progress\",\"started_at\":1758061930,\"expires_at\":1758062525,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"object\":\"thread.run\",\"created_at\":1761861805,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"status\":\"in_progress\",\"started_at\":1761861812,\"expires_at\":1761862405,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":null,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":null,\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: thread.run.step.created\n", - "data: {\"id\":\"step_bb4qLAirkV9uUwc6PoVCbLcj\",\"object\":\"thread.run.step\",\"created_at\":1758061931,\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062525,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_3xYHbdYyFCduQU3crV14FHK4\",\"object\":\"thread.run.step\",\"created_at\":1761861813,\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862405,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\"}},\"usage\":null}\n\n", "event: thread.run.step.in_progress\n", - "data: {\"id\":\"step_bb4qLAirkV9uUwc6PoVCbLcj\",\"object\":\"thread.run.step\",\"created_at\":1758061931,\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1758062525,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\"}},\"usage\":null}\n\n", + "data: {\"id\":\"step_3xYHbdYyFCduQU3crV14FHK4\",\"object\":\"thread.run.step\",\"created_at\":1761861813,\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"type\":\"message_creation\",\"status\":\"in_progress\",\"cancelled_at\":null,\"completed_at\":null,\"expires_at\":1761862405,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\"}},\"usage\":null}\n\n", "event: thread.message.created\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message\",\"created_at\":1758061931,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message\",\"created_at\":1761861813,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.in_progress\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message\",\"created_at\":1758061931,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message\",\"created_at\":1761861813,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"status\":\"in_progress\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":null,\"role\":\"assistant\",\"content\":[],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Since\",\"annotations\":[]}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Since\",\"annotations\":[]}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" it's\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" it's\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" warm\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" warm\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunny\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunny\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" outside\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" outside\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\",\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" I\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" recommend\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" should\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" wearing\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" consider\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" lightweight\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" wearing\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" light\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" breathable\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" clothing\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" breathable\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" clothing\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Here\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" such\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" are\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" as\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" some\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\":\\n\\n\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" suggestions\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\":\\n\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" A\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" t\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" A\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-shirt\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" short\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-s\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"lee\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" light\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"ved\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" blouse\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" shirt\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Shorts\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" tank\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" top\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" summer\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" dress\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Shorts\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" a\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Sung\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" light\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"lasses\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" skirt\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" to\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" protect\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" your\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Comfortable\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" eyes\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sandals\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" from\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" the\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sneakers\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sun\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" A\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" A\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" wide\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" hat\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-br\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" for\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"im\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" additional\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"med\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sun\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" hat\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" protection\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" to\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" protect\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" from\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Comfortable\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" the\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sandals\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sun\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" or\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sneakers\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"-\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"\\n\\n\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Don't\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Make\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" forget\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sure\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" your\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" to\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunglasses\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" also\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\\n\\n\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" apply\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"Stay\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" sunscreen\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" cool\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" if\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" and\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" you'll\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" enjoy\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" be\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" the\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" outside\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" weather\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" for\"}}]}}\n\n", "event: thread.message.delta\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\"}}]}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" an\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" extended\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" period\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\".\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" Enjoy\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" the\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\" weather\"}}]}}\n\n", + "event: thread.message.delta\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message.delta\",\"delta\":{\"content\":[{\"index\":0,\"type\":\"text\",\"text\":{\"value\":\"!\"}}]}}\n\n", "event: thread.message.completed\n", - "data: {\"id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\",\"object\":\"thread.message\",\"created_at\":1758061931,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1758061932,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Since it's warm and sunny outside, I recommend wearing lightweight and breathable clothing. Here are some suggestions:\\n\\n- A short-sleeved shirt or a tank top\\n- Shorts or a light skirt\\n- Comfortable sandals or sneakers\\n- A wide-brimmed hat to protect from the sun\\n- Don't forget your sunglasses!\\n\\nStay cool and enjoy the weather!\",\"annotations\":[]}}],\"attachments\":[],\"metadata\":{}}\n\n", + "data: {\"id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\",\"object\":\"thread.message\",\"created_at\":1761861813,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"status\":\"completed\",\"incomplete_details\":null,\"incomplete_at\":null,\"completed_at\":1761861815,\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":{\"value\":\"Since it's warm and sunny outside, you should consider wearing light and breathable clothing such as:\\n\\n- A t-shirt or a light blouse\\n- Shorts or a summer dress\\n- Sunglasses to protect your eyes from the sun\\n- A hat for additional sun protection\\n- Comfortable sandals or sneakers\\n\\nMake sure to also apply sunscreen if you'll be outside for an extended period. Enjoy the weather!\",\"annotations\":[]}}],\"attachments\":[],\"metadata\":{}}\n\n", "event: thread.run.step.completed\n", - "data: {\"id\":\"step_bb4qLAirkV9uUwc6PoVCbLcj\",\"object\":\"thread.run.step\",\"created_at\":1758061931,\"run_id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1758061932,\"expires_at\":1758062525,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_P3MtdJmvGCro2DWMGh18mUCu\"}},\"usage\":{\"prompt_tokens\":284,\"completion_tokens\":73,\"total_tokens\":357,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", + "data: {\"id\":\"step_3xYHbdYyFCduQU3crV14FHK4\",\"object\":\"thread.run.step\",\"created_at\":1761861813,\"run_id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"type\":\"message_creation\",\"status\":\"completed\",\"cancelled_at\":null,\"completed_at\":1761861815,\"expires_at\":1761862405,\"failed_at\":null,\"last_error\":null,\"step_details\":{\"type\":\"message_creation\",\"message_creation\":{\"message_id\":\"msg_DNIan6EG0kQaeG3yDCjTXM14\"}},\"usage\":{\"prompt_tokens\":284,\"completion_tokens\":80,\"total_tokens\":364,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}}}\n\n", "event: thread.run.completed\n", - "data: {\"id\":\"run_gI8DZan1GwDyQO1etcR1iTGH\",\"object\":\"thread.run\",\"created_at\":1758061925,\"assistant_id\":\"asst_oq7Dtuk1vCVMs2I8FWywA53X\",\"thread_id\":\"thread_jy9yFFfyHaZxbrjrQLc55usz\",\"status\":\"completed\",\"started_at\":1758061930,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1758061932,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o-mini\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":544,\"completion_tokens\":85,\"total_tokens\":629,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", + "data: {\"id\":\"run_8ah3cPLah1CcGUU9EXDOBauJ\",\"object\":\"thread.run\",\"created_at\":1761861805,\"assistant_id\":\"asst_CfJdd8d7FTaC8peLEVJDY9Vu\",\"thread_id\":\"thread_OZwGwntjVwYN6Yn8XziurXOb\",\"status\":\"completed\",\"started_at\":1761861812,\"expires_at\":null,\"cancelled_at\":null,\"failed_at\":null,\"completed_at\":1761861815,\"required_action\":null,\"last_error\":null,\"model\":\"gpt-4o\",\"instructions\":null,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"get_current_weather\",\"description\":\"Gets the user's current weather\",\"parameters\":{\"type\":\"object\",\"properties\":{}},\"strict\":false}}],\"tool_resources\":{\"code_interpreter\":{\"file_ids\":[]}},\"metadata\":{},\"temperature\":1.0,\"top_p\":1.0,\"reasoning_effort\":null,\"max_completion_tokens\":null,\"max_prompt_tokens\":null,\"truncation_strategy\":{\"type\":\"auto\",\"last_messages\":null},\"incomplete_details\":null,\"usage\":{\"prompt_tokens\":544,\"completion_tokens\":92,\"total_tokens\":636,\"prompt_token_details\":{\"cached_tokens\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0}},\"response_format\":\"auto\",\"tool_choice\":\"auto\",\"parallel_tool_calls\":true}\n\n", "event: done\n", "data: [DONE]\n\n" ] diff --git a/tests/SessionRecords/AssistantsTests/ThreadWithImageDetailWorks.json b/tests/SessionRecords/AssistantsTests/ThreadWithImageDetailWorks.json index cf2bd2e05..357b2c2e7 100644 --- a/tests/SessionRecords/AssistantsTests/ThreadWithImageDetailWorks.json +++ b/tests/SessionRecords/AssistantsTests/ThreadWithImageDetailWorks.json @@ -9,7 +9,7 @@ "Content-Length": "198", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -35,67 +35,69 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d0010ddda334-SEA", + "CF-RAY": "996e32876d5408e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:10 GMT", + "Date": "Thu, 30 Oct 2025 22:02:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "400", + "openai-processing-ms": "387", "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": "405", + "x-envoy-upstream-service-time": "390", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_MAYNF2i9R3KRX3Pft3g2Ie0O", + "id": "thread_ru4jnkFhulNNG5c2ccPiprAz", "object": "thread", - "created_at": 1758061870, + "created_at": 1761861751, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_MAYNF2i9R3KRX3Pft3g2Ie0O/messages?order=asc", + "RequestUri": "https://api.openai.com/v1/threads/thread_ru4jnkFhulNNG5c2ccPiprAz/messages?order=asc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d004181ea334-SEA", + "CF-RAY": "996e328a583f08e3-SEA", "Connection": "keep-alive", "Content-Length": "817", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:10 GMT", + "Date": "Thu, 30 Oct 2025 22:02:31 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "67", + "openai-processing-ms": "133", "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": "74", + "x-envoy-upstream-service-time": "165", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_AUzBdJo7ObBOA5lx1M8Dsi6L", + "id": "msg_JQjhtqXeQqVFy49nBtN2twst", "object": "thread.message", - "created_at": 1758061870, + "created_at": 1761861751, "assistant_id": null, - "thread_id": "thread_MAYNF2i9R3KRX3Pft3g2Ie0O", + "thread_id": "thread_ru4jnkFhulNNG5c2ccPiprAz", "run_id": null, "role": "user", "content": [ @@ -118,8 +120,8 @@ "metadata": {} } ], - "first_id": "msg_AUzBdJo7ObBOA5lx1M8Dsi6L", - "last_id": "msg_AUzBdJo7ObBOA5lx1M8Dsi6L", + "first_id": "msg_JQjhtqXeQqVFy49nBtN2twst", + "last_id": "msg_JQjhtqXeQqVFy49nBtN2twst", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/ThreadWithImageDetailWorksAsync.json b/tests/SessionRecords/AssistantsTests/ThreadWithImageDetailWorksAsync.json index a6540855c..c4eca6206 100644 --- a/tests/SessionRecords/AssistantsTests/ThreadWithImageDetailWorksAsync.json +++ b/tests/SessionRecords/AssistantsTests/ThreadWithImageDetailWorksAsync.json @@ -9,7 +9,7 @@ "Content-Length": "198", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -35,67 +35,69 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d6392ed4a334-SEA", + "CF-RAY": "996e3936ec7a08e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:25 GMT", + "Date": "Thu, 30 Oct 2025 22:07:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "524", + "openai-processing-ms": "446", "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": "702", + "x-envoy-upstream-service-time": "453", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_YHiswjmsTVTBWtylCaL38iGS", + "id": "thread_YuuopcBWTat7XMmL7NrQIS4d", "object": "thread", - "created_at": 1758062125, + "created_at": 1761862024, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_YHiswjmsTVTBWtylCaL38iGS/messages?order=asc", + "RequestUri": "https://api.openai.com/v1/threads/thread_YuuopcBWTat7XMmL7NrQIS4d/messages?order=asc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d63e5d1fa334-SEA", + "CF-RAY": "996e393a491508e3-SEA", "Connection": "keep-alive", "Content-Length": "817", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:25 GMT", + "Date": "Thu, 30 Oct 2025 22:07:05 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "63", + "openai-processing-ms": "377", "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": "67", + "x-envoy-upstream-service-time": "420", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_gMPbZeMUYQTpBl45lh9LykT4", + "id": "msg_QErWvy8Ys4HZ9peC7M0jd3cB", "object": "thread.message", - "created_at": 1758062125, + "created_at": 1761862024, "assistant_id": null, - "thread_id": "thread_YHiswjmsTVTBWtylCaL38iGS", + "thread_id": "thread_YuuopcBWTat7XMmL7NrQIS4d", "run_id": null, "role": "user", "content": [ @@ -118,8 +120,8 @@ "metadata": {} } ], - "first_id": "msg_gMPbZeMUYQTpBl45lh9LykT4", - "last_id": "msg_gMPbZeMUYQTpBl45lh9LykT4", + "first_id": "msg_QErWvy8Ys4HZ9peC7M0jd3cB", + "last_id": "msg_QErWvy8Ys4HZ9peC7M0jd3cB", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/ThreadWithInitialMessagesWorks.json b/tests/SessionRecords/AssistantsTests/ThreadWithInitialMessagesWorks.json index 20742f294..25d162f26 100644 --- a/tests/SessionRecords/AssistantsTests/ThreadWithInitialMessagesWorks.json +++ b/tests/SessionRecords/AssistantsTests/ThreadWithInitialMessagesWorks.json @@ -9,7 +9,7 @@ "Content-Length": "276", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -41,67 +41,69 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d006dab7a334-SEA", + "CF-RAY": "996e328c29f408e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:12 GMT", + "Date": "Thu, 30 Oct 2025 22:02:32 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "962", + "openai-processing-ms": "473", "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": "1004", + "x-envoy-upstream-service-time": "481", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_NA7bfXoZo4yAPvORSdtnufLg", + "id": "thread_RlrT8ETTcg2l15t95CvKvkxG", "object": "thread", - "created_at": 1758061871, + "created_at": 1761861751, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_NA7bfXoZo4yAPvORSdtnufLg/messages?order=asc", + "RequestUri": "https://api.openai.com/v1/threads/thread_RlrT8ETTcg2l15t95CvKvkxG/messages?order=asc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d00dea54a334-SEA", + "CF-RAY": "996e328fed9008e3-SEA", "Connection": "keep-alive", "Content-Length": "1341", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:31:12 GMT", + "Date": "Thu, 30 Oct 2025 22:02:33 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "95", + "openai-processing-ms": "1230", "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": "99", + "x-envoy-upstream-service-time": "1326", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_ygY4ZKOsDBaqrrAOTGJsEIbK", + "id": "msg_YCbC8nua791ezAvwZyvFKCZv", "object": "thread.message", - "created_at": 1758061871, + "created_at": 1761861751, "assistant_id": null, - "thread_id": "thread_NA7bfXoZo4yAPvORSdtnufLg", + "thread_id": "thread_RlrT8ETTcg2l15t95CvKvkxG", "run_id": null, "role": "user", "content": [ @@ -117,11 +119,11 @@ "metadata": {} }, { - "id": "msg_0HHsSvvERsLJ2kp5XGrYYReP", + "id": "msg_R8h5buK6fP2K8VYoqEO3e9iJ", "object": "thread.message", - "created_at": 1758061871, + "created_at": 1761861751, "assistant_id": null, - "thread_id": "thread_NA7bfXoZo4yAPvORSdtnufLg", + "thread_id": "thread_RlrT8ETTcg2l15t95CvKvkxG", "run_id": null, "role": "user", "content": [ @@ -146,8 +148,8 @@ } } ], - "first_id": "msg_ygY4ZKOsDBaqrrAOTGJsEIbK", - "last_id": "msg_0HHsSvvERsLJ2kp5XGrYYReP", + "first_id": "msg_YCbC8nua791ezAvwZyvFKCZv", + "last_id": "msg_R8h5buK6fP2K8VYoqEO3e9iJ", "has_more": false } } diff --git a/tests/SessionRecords/AssistantsTests/ThreadWithInitialMessagesWorksAsync.json b/tests/SessionRecords/AssistantsTests/ThreadWithInitialMessagesWorksAsync.json index 99b85772d..fd492457a 100644 --- a/tests/SessionRecords/AssistantsTests/ThreadWithInitialMessagesWorksAsync.json +++ b/tests/SessionRecords/AssistantsTests/ThreadWithInitialMessagesWorksAsync.json @@ -9,7 +9,7 @@ "Content-Length": "276", "Content-Type": "application/json", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.0 (.NET 9.0.10; Microsoft Windows 10.0.26200)" }, "RequestBody": { "messages": [ @@ -41,67 +41,69 @@ "ResponseHeaders": { "Alt-Svc": "h3=\":443\"", "cf-cache-status": "DYNAMIC", - "CF-RAY": "9803d63fced6a334-SEA", + "CF-RAY": "996e393dbd6908e3-SEA", "Connection": "keep-alive", "Content-Length": "137", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:27 GMT", + "Date": "Thu, 30 Oct 2025 22:07:06 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "1247", + "openai-processing-ms": "386", "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": "1297", + "x-envoy-upstream-service-time": "389", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { - "id": "thread_Xllb8ESDQQEpQc2645E4PykP", + "id": "thread_eZwvUUNld4tHGSAcnbS1I57s", "object": "thread", - "created_at": 1758062126, + "created_at": 1761862025, "metadata": {}, "tool_resources": {} } }, { - "RequestUri": "https://api.openai.com/v1/threads/thread_Xllb8ESDQQEpQc2645E4PykP/messages?order=asc", + "RequestUri": "https://api.openai.com/v1/threads/thread_eZwvUUNld4tHGSAcnbS1I57s/messages?order=asc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "OpenAI-Beta": "assistants=v2", - "User-Agent": "OpenAI/2.4.0 (.NET 9.0.9; Microsoft Windows 10.0.26100)" + "User-Agent": "OpenAI/2.5.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": "9803d6488a31a334-SEA", + "CF-RAY": "996e3940c95008e3-SEA", "Connection": "keep-alive", "Content-Length": "1341", "Content-Type": "application/json", - "Date": "Tue, 16 Sep 2025 22:35:28 GMT", + "Date": "Thu, 30 Oct 2025 22:07:06 GMT", "openai-organization": "Sanitized", - "openai-processing-ms": "601", + "openai-processing-ms": "51", "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": "705", + "x-envoy-upstream-service-time": "55", + "x-openai-proxy-wasm": "v0.1", "X-Request-ID": "Sanitized" }, "ResponseBody": { "object": "list", "data": [ { - "id": "msg_DzGHstmWEETOrHwKKpUDadFZ", + "id": "msg_vVatONb6ppsK8Z6RoRe5uKJL", "object": "thread.message", - "created_at": 1758062126, + "created_at": 1761862026, "assistant_id": null, - "thread_id": "thread_Xllb8ESDQQEpQc2645E4PykP", + "thread_id": "thread_eZwvUUNld4tHGSAcnbS1I57s", "run_id": null, "role": "user", "content": [ @@ -117,11 +119,11 @@ "metadata": {} }, { - "id": "msg_a5FlHr5lIXVQbtEqP6yLqUCp", + "id": "msg_Mn2oyRI6DimyQjwVAloraXsZ", "object": "thread.message", - "created_at": 1758062126, + "created_at": 1761862026, "assistant_id": null, - "thread_id": "thread_Xllb8ESDQQEpQc2645E4PykP", + "thread_id": "thread_eZwvUUNld4tHGSAcnbS1I57s", "run_id": null, "role": "user", "content": [ @@ -146,8 +148,8 @@ } } ], - "first_id": "msg_DzGHstmWEETOrHwKKpUDadFZ", - "last_id": "msg_a5FlHr5lIXVQbtEqP6yLqUCp", + "first_id": "msg_vVatONb6ppsK8Z6RoRe5uKJL", + "last_id": "msg_Mn2oyRI6DimyQjwVAloraXsZ", "has_more": false } }