From dc82791bfba88cbc5fba52e3372c581883073eb2 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Wed, 24 Sep 2025 11:46:57 +0200 Subject: [PATCH] test: gpt-5 --- providertests/openrouter_test.go | 19 +- .../multi_tool_gpt-5_azure.yaml | 63 ++ .../multi_tool_gpt-5_openai.yaml | 63 ++ .../multi_tool_streaming_gpt-5_azure.yaml | 307 ++++++++ .../multi_tool_streaming_gpt-5_openai.yaml | 535 +++++++++++++ .../simple_gpt-5_azure.yaml | 33 + .../simple_gpt-5_openai.yaml | 33 + .../simple_streaming_gpt-5_azure.yaml | 236 ++++++ .../simple_streaming_gpt-5_openai.yaml | 228 ++++++ .../tool_gpt-5_azure.yaml | 63 ++ .../tool_gpt-5_openai.yaml | 63 ++ .../tool_streaming_gpt-5_azure.yaml | 731 ++++++++++++++++++ .../tool_streaming_gpt-5_openai.yaml | 707 +++++++++++++++++ 13 files changed, 3080 insertions(+), 1 deletion(-) create mode 100644 providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_azure.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_openai.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_azure.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_openai.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/simple_gpt-5_azure.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/simple_gpt-5_openai.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_azure.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_openai.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/tool_gpt-5_azure.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/tool_gpt-5_openai.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_azure.yaml create mode 100644 providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_openai.yaml diff --git a/providertests/openrouter_test.go b/providertests/openrouter_test.go index bebaaa629873d21c35127f0590913b40c17a2860..d9677515ea057c69422cd026460731cbe8443b74 100644 --- a/providertests/openrouter_test.go +++ b/providertests/openrouter_test.go @@ -26,6 +26,7 @@ func TestOpenRouterCommon(t *testing.T) { gemini25Flash(), gemini20Flash(), deepseekV31Free(), + gpt5(), } for _, model := range models { @@ -60,7 +61,6 @@ func kimiK2() openrouterModel { return provider.LanguageModel("moonshotai/kimi-k2-0905") }, providers: []string{ - "chutes", "deepinfra", "siliconflow", "fireworks", @@ -177,3 +177,20 @@ func claudeSonnet4() openrouterModel { }, } } + +func gpt5() openrouterModel { + return openrouterModel{ + name: "gpt-5", + builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { + provider := openrouter.New( + openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")), + openrouter.WithHTTPClient(&http.Client{Transport: r}), + ) + return provider.LanguageModel("openai/gpt-5") + }, + providers: []string{ + "openai", + "azure", + }, + } +} diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_azure.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c7eb0a93ec17c41cd6b357b25fbe795cfea10dfb --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_azure.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 866 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"usage":{"include":true},"provider":{"only":["azure"]}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707140-7zxlezBRaoQxH8WaCCD4\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707140,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Planning tool usage**\\n\\nI need to respond to the user's request effectively. The developer's instruction says I should always use both addition and multiplication together, and there's a specific tool for that. I’ll utilize the `multi_tool_use.parallel` to run both `functions.add` and `functions.multiply` at the same time, ensuring the parameters are integers. The user's numbers are 2 and 3, so I'll pass {a:2,b:3} to both functions. I think this plan will work well!**Formatting tool calls**\\n\\nI need to set up the tools call properly. I’ll format the `multi_tool_use.parallel` with two entries: one for `functions.add` with parameters {a:2,b:3} and another for `functions.multiply` with the same parameters. Once I receive the results, I’ll craft a concise reply that clearly states both the sum and the product. I could say something like, “Sum: 5, Product: 6,” and keep it minimal in formatting. Let’s get this underway!\",\"tool_calls\":[{\"id\":\"call_38bA2NNRo5OscBPdGq7eI5Pi\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"id\":\"call_9xUJFQuZmBhVgz9zrfVJUq9r\",\"index\":2,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Planning tool usage**\\n\\nI need to respond to the user's request effectively. The developer's instruction says I should always use both addition and multiplication together, and there's a specific tool for that. I’ll utilize the `multi_tool_use.parallel` to run both `functions.add` and `functions.multiply` at the same time, ensuring the parameters are integers. The user's numbers are 2 and 3, so I'll pass {a:2,b:3} to both functions. I think this plan will work well!**Formatting tool calls**\\n\\nI need to set up the tools call properly. I’ll format the `multi_tool_use.parallel` with two entries: one for `functions.add` with parameters {a:2,b:3} and another for `functions.multiply` with the same parameters. Once I receive the results, I’ll craft a concise reply that clearly states both the sum and the product. I could say something like, “Sum: 5, Product: 6,” and keep it minimal in formatting. Let’s get this underway!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo073NC1i_BYNaW_yos6IvjGS4t52wBnnhOkWAAyfg6fpTLLE4ofmi3wjfRlTm03nRMXQC__m8G6UgA0P38BkEN6fTnEklg9IkPOw-24amjYsUNSJoug_KCWnbDcpyD_DhMVhbxyLVN1YSw4o_og1F9reEmMMuqBV0FC5_rorIUDVIQ0QjTT5QU9aQ30FxzKWOlivFjgss6QHyRvVqhb0CKz69uWWSZyYYM1Ba5m0m3YXOnjMaFRlxwl1flGkA-T8OQk-Cda7oNLVofnAPJ8UN8UtBWg_Y24EToDkpm69erc9Nsmf0Yxfc6iIPAqh7VmEw5dQ5L9zQj94O81Xe8XuLAzbqiumnjwqFjca_59T9AbPAmhvOx0uLX2MtBBgfwRP2EM2lOwu8pLC5WMBZPvuSxq7R8wOBNUCJt1pmSG1IQBkZ4pnjvFy6PhO-p88RQZB_BrDpmqW5rave4VKlgrowPzfaiOkLJWKCFyoruW7S0LHlHEXXH1u7kpJBhlhFJBuW4CjggezVIAldWpVzdevDJjHiEQaLaxrMZcSB1XWlqbyYzpkgzzW69fMWYd3ewGyRjTpCpOCyGbKWOiWgqj3CHYCXTCbwls_r97d0aXabD2ps9cBWxPgp7ikjRkBlcw3wHd4jMUx8wkSxoMJ1tP6tH1tq0S35vHQ2TqrByNNbbkiXj2Xzl7vOrxSZcfYM51QF8sq7Yd5gM7Xe3rmYWx8h4-pCRPtG6MmI9GQDzsiP72cAtpNipGBj0YIK7-rxN5lBdaYZxkAO8O_g1Ay0sSw6pwKBXV7cRTARpZHznJB7qtIZuCAlPfrbj8CNYjGK5w09oG5lxBnDfAOhCvNDzzM2tDgld837-IK538DVhTD0s_Q6sKV5hNr7166GWRvn1UVZHyyBuehlKlpQ-tzUBkcCdV5xWjJbqVv-bTH40DjDvp2x7SqV6m_Nb_VJfsxCFR25SUU4pTlIPtqtUA8T_KyEets2iTS9HAfdlMcYfaWLQ1fg2IkucESoZCA11PEefZnhaqJKcd7Syy-yMdmteG2wJBaB3jdVdMPgUtzpJbyIIdbYrFgaFZH4EB4Yf4NcJp5ox42ro2sACZNFxZneZ1lJlskd5WG-HUWK-pzm9VSATtaQnIDTp66DUTU2dUlfwvZOxzI5_TGN8lBpRIWS3Ah22kkn37NbUeanaeVYR4hJIIQtDpFyfrQdy7zRn0S0WPfU5KJGMsPERjcdcqBnDGerpet6GXYKmHfRMheU6fmM88rsSujQ4Qqb-tBYTLdj21_AfnBOWivKr81fOJNK4V5mznyHVp1EayS5D7Mun7cvIKqqL6KLKNnNO5b-uUQMe78SCEN6MqG9huVGVXSaeQGMOFhqJIjhwZfxt2mbHfhaXWTyWFp8eJJapf_OcGoag_pIt4nMVQEnki_06KSrSwTpzs7fwRVMQzYKnWchgMoLLuh2381ZPosY4wLZ4-BxyfgZ5_gbX1fwIuz-hLYynhhlmuiUsKmhMCZyb1p9VulKQLFj55kTjQiaPebDqFKGfy1oG5gSh23WJ-8C-zaUybDbcW7pWCNmPeAaZ7L8_YJrN-Y0Hoskrn2uu9Y-11fWo8PoP3ifnY3tyEPeahgty6Bm_oI48jN7n9O9sYza3Nsdj_3XiIQStSD1B1Nmdy2vu1F5rbdOCgj02VaU3PhPnxrvM5ybT4HclX55qZlPjQpbDyAS0meyFdGyea7wCMULjer6AcdSN4vE31_neNfuGJ0HZYDYC6fFajoysmaLcv9LtFC_ZFcOIidf7uIGWSR6-LDAt5jDnyjR2oUyF13p9eeNo_IAcDySvU4KSiS2NojKElk4f7ku-zXH7Ll39Ol84AecLINobDDNrEloW-FqBwTx9DZbATuRvwUBpO7H0eKa4djMLg9_C2q5SkBsvL0ItfLbC_O0Wo4hnycQ3eXwixP9xs61Ji-mgX6lxzM4EQzfU5-_nbenxHrJVBD7G2LrfibflAuJj81ybrcbhGOu5XcgHBU5m1y998yEGF_7Ftqg3EOfJ-p1uJhlgEffNEEKGYgqgcjmTPTXyy4OmuwIN4n6w6AQD-s25by11TwI6ZY696GktMr9mLYKG_70TtWpfDUF15NiACAUabNCdPBNASx9ZP0TA2cMeL4mwTM92K0NCjR1g1zhH9ZlKHBc4ce0W-FhmQGHYlwZUNf1TcnAxwSKGjr8S68Q2q_4MCu8tbSPF15HqGnjfTQtNfgraBRb7GOrMqWXMQsLpmJXpOXD0D9R3MxUrav_j78I6Lgs6WhP8ENGYRTTMiYyb2hwL4vaQYPPPxcEk6Wzy47ZCfy6ohHxaL_8GWyQZRn75tJYBF0bF1megBZ1sE3jVB7Fi3HR6BTX4EYJCbmBNq19HZWq_nMr-YXjVe5diySQ4-nuPnKqgWar6s1YYCvOZv_ul82wF1J-zzomiUXKe7qMDbWUqD89vH5KXavWjtiAEVDp12x2iGFAf3DJFgEI0tQI9OEGEVRLAuXwww5JM4Ajwz_reaccgzdYz1SL0bq3vCKyJ6M1XYRqEXzCb4cFmeaO5_yMz-IwnXyS1-O3MaIU_kBXruWxrxIM50B44EEhtq8eKf1lAICk_uObP4fiuLTwZFRxn82-qOJZ\",\"id\":\"rs_68d3bdc5c1b08194bece7d633f3ddf440d2b531bc87eb859\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":108,\"completion_tokens\":312,\"total_tokens\":420,\"cost\":0.003255,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000135,\"upstream_inference_completions_cost\":0.00312},\"completion_tokens_details\":{\"reasoning_tokens\":256,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 604.054917ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1291 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_38bA2NNRo5OscBPdGq7eI5Pi","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_9xUJFQuZmBhVgz9zrfVJUq9r","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_38bA2NNRo5OscBPdGq7eI5Pi","role":"tool"},{"content":"6","tool_call_id":"call_9xUJFQuZmBhVgz9zrfVJUq9r","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707150-VVMwFo7fEz3DKgrI3MVm\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707150,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Addition result: 5\\nMultiplication result: 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":167,\"completion_tokens\":16,\"total_tokens\":183,\"cost\":0.00036875,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00020875,\"upstream_inference_completions_cost\":0.00016},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 863.837ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_openai.yaml new file mode 100644 index 0000000000000000000000000000000000000000..30c1be8af67ff4d84c7c320c8a3e0e77bc832f3b --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_openai.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 867 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707082-WHye7guGAa2fJ01AudCT\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707082,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"call_lfHjlRqeOaq6arHc4D43P3bV\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"id\":\"call_7OPBsC99NtbdLp6TWNKCVhU7\",\"index\":2,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo072S5oVHd8LsCXn70b4QIsVlymstOi7CpaoVw0CAzkDBPPurF1yT6tLnOGWod93Wfqo8b79oMqnu98V9OLhXsmIH8q0dSyItt9le1j_otjb-UcD80zUWQO4puCLU3f_Z7LBrsfs97BZPJTRVIjef49VcGMCJXKBtlPYZafQ-NpgbNVoj2GnehF-egk7YkPUSp4-swqWVTLn-39pDqt0EgthedGlQAoxVHBvNjY-KvQGPSrjO8ehTKRm185q7NwmtWvvMfJD6VVQ5NGyGX16td8tkam6pOa5dI0XxqnWuX4igXQHkqdELbCwErIMFNC3rL-RmmfXQgH7jwG4k4kbLLkS-_Ukv18weonXmJWwVmsNIAyNaT0xhSDLVKPtRhzTBtSk_jQv9SlCLqBctv98o6KszfF1fD5LHrqVUl7hjGF3nmXabiMwQ4X-6vM1H241n-lQ6qog-xoNH11GrmOK9KDt-slZOJoLeR5Fd98tDYjSY0DWZ0S_RLcR_JJH89QBd19YlGLLJpHnAHoiy_suTIsaZQybEd0Dj-lvmJrkAZcv4CruxkI2ftLRD1U9Yv0aNrXGFdM35ES-Ww9Y849dARXJn_hlJJDgEJA1d8jjtKCFKhS09qOW1NWWc5CBiJaKrK5ZyqGGQYyaszYtMyvPgd33tn3ZlNuNjlFwjjkaQIqsSpqA6r7lOJIlh8SHaKwD2K-PJ2LQe3RKDI1wRhpjYN8qf_8Pve4V_b03JSmLSt6CSYeyT_b7idYMTgfos2lzWPFkVA9bJenLLGTQZLV23eM3YCGxh_qnT_otx8bt1KJnVZ16u_6qh0h5TrRsPq7euEpP7taMdWncKBvJXHq9IHzs9if-CGqEFUMYJhyXmacSTfH0dRdyAoQ0g16TLuOMsJ2Z7-bW6vUbHwLTX2N3UUr_XroBlSEcBPA0a-64ob4O8pvWBpAyhDCHB4_Ksh4izGPH3aB3EiUo_BHgGTlIKLlOaP1T_o-nPC0zn0qvaxsD8lBIJB3lEV_oiZtsdlJmpnX5qVL_ciE4L6rrjuwLDQtYL_WDBtEDeebFlV_Q31b0XgGs-ENeNutURI3U8BLJpiPwOKCoeAQpb_wTtbIr0P03-vYaqRsq2U8qK0MCxToXgoNlUXnSWr4XC1GPuIUDwfnl8ZDDlq3nPU_xTHP3Z3UVtqlhQW5LhIrzKiuweLsBBCrTUPCQkNJrW2_0Z-CAKYs1s_Ix0CX3jGoSCGTINtAMpX8FP7hGZQshQFZ511ghRIbN5rm38Ju6-bDWcjnxwSR9hSo4g4F4cUuBpc7K9O5cJAB1JjdkwMgkJ6mu51q7u7CIV0T8EGJyY61_VV6fDcJ-ls_uaXMHkRuhbrkjH36o1L5F1yWcVW0TV6u54ceRlYYQtvUu_M6Va0ob1Dj8HQSlPmkX9o1fiaZ8Srv8VguPaeBkoi_j2cEPSVPymhDYyDLYBJ3_qSxSjAV8XgzAZP_ziqDo2y_PAjt05CFS7FB6dqZQaUfRJXgSrsdS_SvDllJrEvn-6hjQnsAMW5j54_BqOfhCOOgenM0GnDTG9cX2cQSTh-lw9xl3ZkaOtwwp2nTTX0lSe7gX05mtHso8iD7dF9WnyFSppFEpwhk_ibPI2vsrGKOvQvymElS0tSKlU6SDBwCpOwWCvc8nCbyCBGewRr6aKrPvSwya4R9SfjbciWBfkPaDMIRUQrsHnnWVhOvSWo5q-IGqPkSyX7fB2iS0VOlyb7mKAKK8EPG9oyNrw3CUFpTCBfw4RA7oAB5muCFFtkR29z_XiZI03A_dQKdjUh-2uSD8hrn-T4s1tfdsHcwoVnUoi_uyFtxbm-Hym5GeIgob79YeFUSSj_6t5reD3Mzu0NA64NCBxlbYpIq-Payp165HSNBdlUFAVLvLy1KRdY8dmPuH4ghcCd-TY--TrYXjNyF8Mwd8on602lP6cV-aCPXZOJBuF7EBs5Oug1bb5RyjkAeMXOSYk8pCYma-ND5DMaTGWSBbca7IOFRhBuI2f14RU4zjp6LoQSBvPVlMRDd9GzR25O1j5d0lIhbuDKaSZuLtFlzAAv841PtLvxchWb5vzWLCMRnA_tG0qCsIS6f-fQcdipMFzwXcIXxTL6kMkcxF9hPgUPXpxh2kynerwQW3Y7Zyr7_gMJ1xe78z8ugoZZCvcCO7BGkVYHgKE\",\"id\":\"rs_68d3bd8b640c8190a5d3fc478b0be2070cddc5a22f54429f\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":108,\"completion_tokens\":247,\"total_tokens\":355,\"cost\":0.0013025,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000675,\"upstream_inference_completions_cost\":0.001235},\"completion_tokens_details\":{\"reasoning_tokens\":192,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 922.219792ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1292 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_lfHjlRqeOaq6arHc4D43P3bV","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_7OPBsC99NtbdLp6TWNKCVhU7","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_lfHjlRqeOaq6arHc4D43P3bV","role":"tool"},{"content":"6","tool_call_id":"call_7OPBsC99NtbdLp6TWNKCVhU7","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n{\"id\":\"gen-1758707090-toYnzjde1e2E6gY0BdvG\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707091,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Results:\\n- Addition (2 + 3) = 5\\n- Multiplication (2 × 3) = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":167,\"completion_tokens\":30,\"total_tokens\":197,\"cost\":0.000254375,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000104375,\"upstream_inference_completions_cost\":0.00015},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 815.940041ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_azure.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6b5ec72fed3098c7effa65fdd49e4bcba30aa548 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_azure.yaml @@ -0,0 +1,307 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 920 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Considering","reasoning_details":[{"type":"reasoning.summary","summary":"**Considering","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" see","reasoning_details":[{"type":"reasoning.summary","summary":" see","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" returns","reasoning_details":[{"type":"reasoning.summary","summary":" returns","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mapping","reasoning_details":[{"type":"reasoning.summary","summary":" mapping","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wrapper","reasoning_details":[{"type":"reasoning.summary","summary":" wrapper","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" gives","reasoning_details":[{"type":"reasoning.summary","summary":" gives","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" aggregated","reasoning_details":[{"type":"reasoning.summary","summary":" aggregated","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" prepare","reasoning_details":[{"type":"reasoning.summary","summary":" prepare","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" present","reasoning_details":[{"type":"reasoning.summary","summary":" present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" something","reasoning_details":[{"type":"reasoning.summary","summary":" something","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear","reasoning_details":[{"type":"reasoning.summary","summary":" clear","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.summary","summary":" like","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stating","reasoning_details":[{"type":"reasoning.summary","summary":" stating","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sum","reasoning_details":[{"type":"reasoning.summary","summary":" sum","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" product","reasoning_details":[{"type":"reasoning.summary","summary":" product","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ensure","reasoning_details":[{"type":"reasoning.summary","summary":" ensure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’m","reasoning_details":[{"type":"reasoning.summary","summary":"’m","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"comment","reasoning_details":[{"type":"reasoning.summary","summary":"comment","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ary","reasoning_details":[{"type":"reasoning.summary","summary":"ary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" when","reasoning_details":[{"type":"reasoning.summary","summary":" when","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calling","reasoning_details":[{"type":"reasoning.summary","summary":" calling","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" switch","reasoning_details":[{"type":"reasoning.summary","summary":" switch","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" final","reasoning_details":[{"type":"reasoning.summary","summary":" final","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" delivering","reasoning_details":[{"type":"reasoning.summary","summary":" delivering","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.summary","summary":" answer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let","reasoning_details":[{"type":"reasoning.summary","summary":" Let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" everything","reasoning_details":[{"type":"reasoning.summary","summary":" everything","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" place","reasoning_details":[{"type":"reasoning.summary","summary":" place","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" proceed","reasoning_details":[{"type":"reasoning.summary","summary":" proceed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo073WkEbSUTynXLWF7YkXtlqemSvTu6ZVh1opH6GIeivg460VGOSWqMgajuCL2BAd9Ph1naqJaumzpKDFfpYa3_yXplsvj-oJbPsYIIgYCcpHAtqHQ9uBnJEoSSvhgfz3cBje__74aNbynm1tUvMAmzdIRfny4P6diP-aF4ML2pkay6bP0zWF4WDF7zEQuvqYViorvj8BAsjaGZcBIDg5vxjVvBb6ELZKSQrtJq8g4y8sXhZ-pB-kPMjihuh2eG3BEUl9Xv_2kZcyjApyWZ5l8B6RQxaa9w1TgNFWnIXbtqotpc01yKG9qRQFCmTbrSDv5DmShiUMWCtEVI-HtlokcJHHPpGKwAwh82aOeOtk-wTezitAt3JxXGrA0klv0oGkFiRr1WkPesqMrX7YbHDG7qjb1nkj6Na5g2zQVbStVgv0_rbYepRgZm_aVG6fPxeL96T3YxaLgG2v3disYrB3to7oIJh24QGEYR02d_ERqoocoMR3KbQYeryRDyerhjD_OSRa7JkusbcnuzFBH_Jt7V67T5kvZBauEec0LCfMtYtySKF1uGklVQsN-6Dhm0IaGEkVBAuMsIydrs2eoa4Npoocbe6ZftK8lAP5DYySPZDCGlWjnUuzMWg-VPpOMagS9j7LctADFkyv8ADfTWBCk9H0oASdajXQro3qU5YpJ5YJj6y6SA0_3uvSuQ_SdyfKmhOthL1naMwCpJLI0o_GOyn6V0je_AIa4u16vbAymW93dxasmN8DFrVOHMpTj55sc9-S_eWPR-bSc3Oxr0vdjjqRLTWGEIIeoNMZ_4s1bXeVBv94sWITQNGdaAsMmnbN2mQ_R6Je8zYfUuHAnG8LUPkSX8-w92PCFbbYdJ9EaPmMMBYcv2h94c5pXWdMTqo_FK-28Dw_9AnGTYyqLVhy6efDFeEqtyqVxdmGc4OKBWDsNcL2J_7RCfV2blCqLplP7V-HQKTHbl3rKZ8cqqip2DyuJkzqrXw96LeXFHiVgjyXjQblKt1RAtqBGHmKWNbWaeiaMzqA56Xe0opcpZ37Af6_x1y3bxA4ZxNEDWJXSWO6364RLGFTKN8Cb11SNSc5WyKWj3TWV7_TdH9vQ4iSW1z6Q9PuhPnn7tF6utYwbYGfxgPmvfzkgztDZbLOyvxWSddzlAQtXHHNRqVJf7krpOlWx9r5yJ97LhfKnA4XtA-wY3uYEHDkNCBrhVlyA5-M8uE58c0a7n73FCxvwSoXQk3LbK3yqyse6jQ8LDGsQThB9QDMOtpSFPgq0GPxKzrXAXdcRT_jmdFnbrLzlZXHglkeZM9vUvm41kMPEZbVpZNGFUDq6qSnahOoYHXt6IXNdtS7VfAdyA5uflZBTJLUcnE-qcNxfml_Xe_U1cVwJIaDPZ4egkXfgJrzhRuuCFy1gWE7UXSzMQ1FHqBpdV-gw0P5f02E-u3k7-b0XfiK6wRbagkZiV44lHu3Waqhhj_CMyY4IOP-pUOadYoZf0zenGsD1JDXg_t9Xz4tJawblUPKqhMOuxHZSi6ofwRlCslAKjbRufQail6cErHrkvOjkI51JZ13WJIoTO4G0NSKg6XS6aK678OdNrVcForU55pwsKHmKM1TkifPgUPCqhsxkcNI0-5XNYPkOA14RYn_aAlx3RbuTWT6GQ5z-ODBgCVlWp-R9-AWs2Y5VjSwPIOHG3Fpyl9_8PASVV-tnO0MtmbprmeinG436vp5hZanwaaHO6vpsX9WJYwz5YDU72YccWsrFOmmoNpNzMEYnvxlosbRoV3nsQArvvETdXKKcngIGqdtSBgSQF65L5xZc8n9nmxq1WY3_vO52yA-IUF6ue7wVsylf7T_cjd0YIt3kphtlbdEnOAlUtbfDYlxGGcu6VQs41k_T1nK_ygD3dWTH8gl9sglymoAuitkOQm83OZ3j7Qlx3qU39HVxsc6vGl56ZuvEvG3uTyGB6LJL5j-Kusau8zt1HWRGWdeivs6kNY59ZgsoSr_6vG8vM2Ap3S6-COBGnLoGoV62W3ssB1cwQjtl_7xVSmS5R-aBAk4D0KBogkoNxTnngJm0KerL3yyT31fJ3dIYl2oKUEJC7vOGTZ84dQzab3EMIydGqk1qnFN1ZpeGh0HM-KpvVn__0GnayavqZ05XKk556AqBdfE1AGCZ6x_2aemGYJz5ajpN9b8Fk3vUSvGH2GbCv4Lu4GKe4Aiwl9SaFUaJe5Z8ZAqqrwM0a2r-T2XZ2KnyaDSpnW5NNPWFHvdgCpzk9LcM1vdHDi6w2xQSU60-i1RZHTIFopSeIw81G3BoPXuNzdKydNamoSJmierGenAm0HLDXKYnGPUHOqN7OMp4jXsA2uaL6lBkutqdK5KKOVkPd2Wglexo0VoQ19Zz9iHTPXR9QfzXp6mFTuFVT8gil1IPPqQSvsTpmU=","id":"rs_68d3bdd175ac81909a2e3d64d878e8370cdd00ba3753eceb","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_ijzrB4dcJKHFgBWmBvZUDUo9","index":1,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"2,"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_Y8xBzhR205HMo3c53rOS7Aik","index":2,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"2,"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":108,"completion_tokens":311,"total_tokens":419,"cost":0.003245,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000135,"upstream_inference_completions_cost":0.00311},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 733.807ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1345 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_ijzrB4dcJKHFgBWmBvZUDUo9","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_Y8xBzhR205HMo3c53rOS7Aik","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_ijzrB4dcJKHFgBWmBvZUDUo9","role":"tool"},{"content":"6","tool_call_id":"call_Y8xBzhR205HMo3c53rOS7Aik","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"usage":{"include":true},"provider":{"only":["azure"]},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"Results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"):"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multip"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"lication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"):"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":167,"completion_tokens":28,"total_tokens":195,"cost":0.00048875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00020875,"upstream_inference_completions_cost":0.00028},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 331.671917ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_openai.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1d4b87087259f7b68a7eb45f89820c4b51125206 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_openai.yaml @@ -0,0 +1,535 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 921 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Executing","reasoning_details":[{"type":"reasoning.summary","summary":"**Executing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calculations","reasoning_details":[{"type":"reasoning.summary","summary":" calculations","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simultaneously","reasoning_details":[{"type":"reasoning.summary","summary":" simultaneously","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" follow","reasoning_details":[{"type":"reasoning.summary","summary":" follow","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" developer","reasoning_details":[{"type":"reasoning.summary","summary":" developer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.summary","summary":"'s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instructions","reasoning_details":[{"type":"reasoning.summary","summary":" instructions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" addition","reasoning_details":[{"type":"reasoning.summary","summary":" addition","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiplication","reasoning_details":[{"type":"reasoning.summary","summary":" multiplication","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" at","reasoning_details":[{"type":"reasoning.summary","summary":" at","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.summary","summary":" same","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.summary","summary":" time","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.summary","summary":" have","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" two","reasoning_details":[{"type":"reasoning.summary","summary":" two","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".add","reasoning_details":[{"type":"reasoning.summary","summary":".add","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".multiply","reasoning_details":[{"type":"reasoning.summary","summary":".multiply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" looks","reasoning_details":[{"type":"reasoning.summary","summary":" looks","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.summary","summary":" like","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" run","reasoning_details":[{"type":"reasoning.summary","summary":" run","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" these","reasoning_details":[{"type":"reasoning.summary","summary":" these","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parallel","reasoning_details":[{"type":"reasoning.summary","summary":" parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" operate","reasoning_details":[{"type":"reasoning.summary","summary":" operate","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simultaneously","reasoning_details":[{"type":"reasoning.summary","summary":" simultaneously","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" values","reasoning_details":[{"type":"reasoning.summary","summary":" values","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 2","reasoning_details":[{"type":"reasoning.summary","summary":" 2","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 3","reasoning_details":[{"type":"reasoning.summary","summary":" 3","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" return","reasoning_details":[{"type":"reasoning.summary","summary":" return","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" message","reasoning_details":[{"type":"reasoning.summary","summary":" message","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sum","reasoning_details":[{"type":"reasoning.summary","summary":" sum","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" will","reasoning_details":[{"type":"reasoning.summary","summary":" will","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 5","reasoning_details":[{"type":"reasoning.summary","summary":" 5","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" product","reasoning_details":[{"type":"reasoning.summary","summary":" product","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 6","reasoning_details":[{"type":"reasoning.summary","summary":" 6","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sure","reasoning_details":[{"type":"reasoning.summary","summary":" sure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" inputs","reasoning_details":[{"type":"reasoning.summary","summary":" inputs","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.summary","summary":" are","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" integers","reasoning_details":[{"type":"reasoning.summary","summary":" integers","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.summary","summary":" are","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Executing","reasoning_details":[{"type":"reasoning.summary","summary":"**Executing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parallel","reasoning_details":[{"type":"reasoning.summary","summary":" parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calls","reasoning_details":[{"type":"reasoning.summary","summary":" calls","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’m","reasoning_details":[{"type":"reasoning.summary","summary":"’m","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" going","reasoning_details":[{"type":"reasoning.summary","summary":" going","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_tool","reasoning_details":[{"type":"reasoning.summary","summary":"_tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".parallel","reasoning_details":[{"type":"reasoning.summary","summary":".parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" two","reasoning_details":[{"type":"reasoning.summary","summary":" two","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".add","reasoning_details":[{"type":"reasoning.summary","summary":".add","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" values","reasoning_details":[{"type":"reasoning.summary","summary":" values","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.summary","summary":"=","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.summary","summary":"2","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.summary","summary":" b","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.summary","summary":"=","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.summary","summary":"3","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".multiply","reasoning_details":[{"type":"reasoning.summary","summary":".multiply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.summary","summary":" same","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" values","reasoning_details":[{"type":"reasoning.summary","summary":" values","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Once","reasoning_details":[{"type":"reasoning.summary","summary":" Once","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" responses","reasoning_details":[{"type":"reasoning.summary","summary":" responses","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" expect","reasoning_details":[{"type":"reasoning.summary","summary":" expect","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" some","reasoning_details":[{"type":"reasoning.summary","summary":" some","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" numeric","reasoning_details":[{"type":"reasoning.summary","summary":" numeric","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" outputs","reasoning_details":[{"type":"reasoning.summary","summary":" outputs","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Since","reasoning_details":[{"type":"reasoning.summary","summary":" Since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" order","reasoning_details":[{"type":"reasoning.summary","summary":" order","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.summary","summary":" of","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" isn","reasoning_details":[{"type":"reasoning.summary","summary":" isn","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’t","reasoning_details":[{"type":"reasoning.summary","summary":"’t","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" guaranteed","reasoning_details":[{"type":"reasoning.summary","summary":" guaranteed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" gather","reasoning_details":[{"type":"reasoning.summary","summary":" gather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" carefully","reasoning_details":[{"type":"reasoning.summary","summary":" carefully","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sure","reasoning_details":[{"type":"reasoning.summary","summary":" sure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" commentary","reasoning_details":[{"type":"reasoning.summary","summary":" commentary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_tool","reasoning_details":[{"type":"reasoning.summary","summary":"_tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".parallel","reasoning_details":[{"type":"reasoning.summary","summary":".parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" an","reasoning_details":[{"type":"reasoning.summary","summary":" an","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" assistant","reasoning_details":[{"type":"reasoning.summary","summary":" assistant","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" let","reasoning_details":[{"type":"reasoning.summary","summary":" let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" proceed","reasoning_details":[{"type":"reasoning.summary","summary":" proceed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" plan","reasoning_details":[{"type":"reasoning.summary","summary":" plan","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo072cZXrtoGgvfe4X4YFvOIPbrHksolKK6ZClDleGbYXP7ZE-0R--lZubsKlyvPyUuk4HfqOB6Gbt9KyMODVYjs3lvMiYgvdjoKcqaPz0pmTiU9loy27kAfuo9BfIgw7JfPCwKvoIGVXAtqKkjwQ7DnKltrabqgt4OYlhlOBnfvb4jGHJxTtWeUoCR8Ppogjx43GETsDGdPGrt8j1u0VbuyHNtAXDzqXUffmcP6QKxy_ydTBS8K2mCBE-dGUulxaDhMz9shJctA6veeA0Wy7X1zBIRxGOlvkzjARRk5C8Ycp6r7KwvDKv_75mBWXibcDzFhauZIXXxy9D0mzxF8QM9zAhbhPj6r6bhzUI4bPFllfTsZwSQ6Jfr_hQbk6JJ4lfVgBT5tlt9xkhotb8xZp2-6Lp3wd5L0oTZF9sysyMA1DXvPMGyVk0eKU-olepPTVdvFVcFPGdyE-4LtTcmZkqmOjrZDQ6txh_-oaESaOZFhh2PwWaKrA2f9-CPwrLy03CjImzMDmNqjkksOjnwfH6f4XAh0zK8u46oRcB7A68I-tGnRgi9T03Hfks8xESL99yiz2wVXOj__sdP7tBGmg1GLEjOFSAtJBli00zn_1BKqdbgcEFseN_5lBAs86_0fqyaqiLqRaMoPu1X16h7p3nyMZnoRN33BWKd-DoTZ12_pBfvZ2zwlRCOrp3-DWi_VoPejcWtW0dKqPpWSaaCA1ThbCKDii-NJNyj37XJMbo3FSVnu2dUkgJ6xI5yb8zBYU1xmrgJPRz93591b_LUW-xN7zwHVWotipCRR8tv98c7Ls5hl0oVzIzf8ktEgzTumO15rteeG7CVOnjAoZSUTcUpw2oVnGmbdEs4MfeZoMnt86WZJK8z3F1FWte0XN407xnA8mRfVQU9RlxDIKC-7XftJusNgGUZJocONO8GJ4og-tXurxVtTgm-ObwOC7R11KPtBld3meLwPpwPbeESolDeH0jxh8FdwZRG58SJbpTp48JCaYkarf-Hgl34mY4y-BQ6B_2KSy7BlXUq4TAFDYZ2Edg8hnx46VWeuL-8TcNtDTOdIj-B3_0QJu2gZE2PsT_RfBm45R3hizPlk-GG1rkYt5byKiq-VLnnX0BH9uVX0qK8YRG_K_DgYvBh0d_lLBTkVFHLmFb4sr95cWzUtLMGQOBYPYMtqTSdOE8yPpqFFYy0Zpr34GPOil6UKwUNDh9zlrDVuE9slyhK9VBSpB3wKYFKyKbKPXd4BtRj-qL_yDys8lK7siupRlHY06l5eqonAFzvoGOuk05pJsI4yHgErbOKX_jy6DfJ-HjPxJvOPNQaFka3qAoP-vTdFF7R6NlcJJinPLMA0pIRjB2tjXGsVWwnv1e-n_uBz5MUGJXeTmf0lfmonoPkkj_SleHQVPtSzMks5_ozv6f8lEQeVN6NLUFruO7XXVt7xwsqnAEL2ev14mxgI40g66QCZvQHDk4lQsYXBoXX3vpBE2EiTy5Dd1OJsmjoCUSF6VciSSKTefw-WSke9g7fScY3V_y43cdf1ak6FDEsjCm3LYykaLjepW3va6ahHiKO206obfsHcJrsP-ooLVcuv1j39VsHFa5f7mzMQvqX64zGcfZ1nhZHSS7WZPjoBKKpCpaDVKzb5qNjj7G9qhiSqZLXMqemCUz7uhOa1uP2xwRP3IWOqFP0uliWVrnsVar7KVK3NvRTng0R5xD7tOu2Ha3L7Ar_mFotWrAGD_n27mddTvUHFs5han8MkN16FLph9P8puPRanKfn2mskUbCs1rq7Bl6zjYMH4EnVMJgZxxwiOoHOcUaBsBYg7xHrNPlIM1JpykXFY_2i59sLwDVv3fF_z9P61XdUt_crwGh72WU0CskOGg_h0i6WVi1naSeCIG28XVS0y7cQ1Yl6Azdifbmu7vfGSdI3IEOafNXQ3jEO8-o9WpXH-nrvy-zEDN_pR0M3CLJhUGUwPPotC7MMI9QNn2NJN_xUQgZWflRTxAa_pwE-IxQ7owWqMrPxrpUtTkrw_OWpAYgmCRF94K084iI8bHTZALz3q22AjsCc2zfXgtBS-PZoWqWc8W8MnoOAQmK4o1tziC37l9MhDPx3i5YgJ8UYGsOo422Q8uyEKdY5-yJLJ2U0HPYmU0m1RTxUkM3jbztwATbP_kTpS4mBYrklKfjZH9Aa1-aBUm4H46U3-Hw4l5Wp_vZWvQt6NWmx77687WZJ-4vqTH8G6i6oLJtF3fWqF3UOjSOZ6O1W3IDywVDOPFUMc4uI7jxPO8qvsMepmmIdWi00UNuDjss-dxrqvg9WNch1RK4CeX4ohopiVtmJATyaqyczETeZQOoR-g9qY3foNIyMu_Ujq8GPFcmJzrGpWGcekMUBNKcaXH_6Jtxxsus09UImC-q5mWCdAnmxdn4TBPOn5TZRmFz1QgR6DqQC1RMJUPSb2hhpLv0so_tcTGkysoKe4vAdRbLzTgPAebp9SjHQ_X3oHJM5_7bRCiH6krgJOOQ8WoN0Is5WUBU-p4L4xEKf3W77lC8MPNc2_gjxoH0jpZhzj5L0wIktjZVbsZ5Rg-N","id":"rs_68d3bd95d5748194938da838381c7df802d5cb7fd0eeab82","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_psIQR4WDe9RBCaW98POt5Vxo","index":1,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"2,"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_LSUSZlpGq2DwndXz2kBOMcBY","index":2,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"2,"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":108,"completion_tokens":312,"total_tokens":420,"cost":0.0016275,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000675,"upstream_inference_completions_cost":0.00156},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 594.841084ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1346 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_psIQR4WDe9RBCaW98POt5Vxo","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_LSUSZlpGq2DwndXz2kBOMcBY","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_psIQR4WDe9RBCaW98POt5Vxo","role":"tool"},{"content":"6","tool_call_id":"call_LSUSZlpGq2DwndXz2kBOMcBY","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"usage":{"include":true},"provider":{"only":["openai"]},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"Results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multip"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"lication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":167,"completion_tokens":30,"total_tokens":197,"cost":0.000254375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000104375,"upstream_inference_completions_cost":0.00015},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 882.618042ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_azure.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c43becd8eaef5998a8b6c7b859e8bf515d6976cd --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_azure.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 228 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"provider":{"only":["azure"]},"usage":{"include":true}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707102-LV2O8bYKDQ2ht8G0KTHw\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707102,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":\"**Providing a simple greeting**\\n\\nThe user wants me to say hi in Portuguese, which is a simple request. I'll go with “Olá!”, as it fits the instruction perfectly. I’m considering whether to include “Oi!” as a casual alternative, but I want to keep it minimal since they asked specifically for a singular greeting. So, I’ll stick to just “Olá!” for the response. I think that should be just right!\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Providing a simple greeting**\\n\\nThe user wants me to say hi in Portuguese, which is a simple request. I'll go with “Olá!”, as it fits the instruction perfectly. I’m considering whether to include “Oi!” as a casual alternative, but I want to keep it minimal since they asked specifically for a singular greeting. So, I’ll stick to just “Olá!” for the response. I think that should be just right!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo072ijkZbv09_zuszJjRnHB6MyDgyyN2UHg9Y7WyLmvgemCeaOaMJ342Pwx1UOpIhuX8-z6h4oMVyMtAOl2ulpKKezx0nrxgI7KguSLx_bMIElyFDLAxUFWaEu1ZzYAkAta-RK1GsmU6Qc6gOAsW0vSgw-_3ErfcFDK81WoN4AOGxYY-u0pvbdXUvPZA0f0tbmqcpGM-UvcURFs6_gPnZ720J9EdzkT642BOjKSyJlz4tCF9qX4eLig26X-R2gpcTZWb--L3WAhpse7I4U3M1RvxCwt0FYQhg7KiUDdWQy_Vm8zapSdPf2-dS0r-Evc14fjZBMxCFky51OCa5GHtJz8KnGXQx7p7VbPgS7c_I0DrOhcNSPhcbuT2XYp-D5PsX1JJQFz-ZkrghP6WvquthqaVvd2vp-0hhnnviqmdE1bssl91vYGDab6k2WLpoPR3MZps6xkVwIb5IDID_VCKO5a9m-dXljXXuslKsHjbb9_p3d_Cn2eFiXZAgLlcz8N1-BIIxFp6EygIZT4zbh8tRWbxr1QtHoAmAKuW73NjP_P8tdUxMTWDCYulcKhUxIBz-aCtu4JsigKsW1YUnED6ddBsXU2rTkITcWDlUjWowfA3RQKup7rB9vdwcEQXmq-ZP1C8pav6VZ41GA4FlbswgdxX4egVnchhm5qFuGYUwursE4LMX7Mo8kHm44E22I-MMBA_GyjiCN6tRy-cK623OudjkMGJTj_74hPL0pMxqlsng84LpSqI6uW_xgDOg4pSfKtdq3wS2JZ9z1vFlLsrbF_uzMfUmM_sc1GgyLq2rg0qH0cKZk8-0DwX-cq-NP7q40mkF4QxQS3gq0y1ZzHk7Y6JjsGnQrh0mspKUP9E4tWTi6u95sCT6JtYuMgLg-71jMyJf9uSV8IrE6iOS6QlIJ3b-3emXkNpAQfGu4WXPL47X_3Ooai4Ofi_fxmLLurJHGFVoB-Ya9aCBFbkmc5aBB_8Uj-5A50S1FEJZk6mIRHU_-d-9aF8lOew270n81y336NCZ8Ekp6EA25Eoy9KUlPO2yy2ZNt3TzhcNP63atOsvKvtHBLnpaL15kUrSOnhfnZB2B7GqObYewTpKQz7SIkvtjs4BfH07Im7hm3c5GynefW1F8QfmF2Jkw3QDmi3VpnJ5ToxGtEG4j1xJLkA2m7jWgqU8HOm2M6Q-o900VDvil1SY-z0cKhcDc8DCGW-MF7mnSIleevplr5OkGLweyS9y2dhXB3x3bQhsH8ojA48aKkGlFDP_oqTj3WvqMXNAlszqogujaCOR9LIMdjnXF1Xm2kISM0nEudWMMQGdXXQWA80Ldvk9Yr52sbEa_AdgtGl-W1f5FwX88BUmkx3lFcLqTDHoX-9r3asm4zsqdy_vTw26YOrzuFw-hfDyzxCqLEETEwCZjwMv91qmLak5VNWe3zQjhbstmvOxSmwAkBgSyqISQZVvsszzVpiubxTP4ABbv\",\"id\":\"rs_68d3bd9fc3b4819381f4bd31004fa6980a768aa9a18bdd94\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":19,\"completion_tokens\":72,\"total_tokens\":91,\"cost\":0.00074375,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00002375,\"upstream_inference_completions_cost\":0.00072},\"completion_tokens_details\":{\"reasoning_tokens\":64,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 877.208875ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_openai.yaml new file mode 100644 index 0000000000000000000000000000000000000000..390c67f99e4001bad3d331a2312e1c9ac18223b2 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_openai.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 229 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"usage":{"include":true},"provider":{"only":["openai"]}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707037-spxAgURMfR1qAS3EgZXG\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707038,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":\"**Providing a Portuguese greeting**\\n\\nThe user asked me to say hi in Portuguese, which is a straightforward task. I consider offering \\\"Olá!\\\" and maybe \\\"Oi!\\\" as alternatives, but it's best to keep it concise. Since the instruction is to avoid heavy formatting, I can simply say, \\\"Olá!\\\" without extra explanation. A single greeting seems sufficient, so I’ll go with that. Keeping it minimal is key here!\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Providing a Portuguese greeting**\\n\\nThe user asked me to say hi in Portuguese, which is a straightforward task. I consider offering \\\"Olá!\\\" and maybe \\\"Oi!\\\" as alternatives, but it's best to keep it concise. Since the instruction is to avoid heavy formatting, I can simply say, \\\"Olá!\\\" without extra explanation. A single greeting seems sufficient, so I’ll go with that. Keeping it minimal is key here!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo071mQig1LbpUtX7BiV4Fk_0Bwldmx_ZbTYVfuYNZdgSQPyQ0hluqdDKG1hRoVBRU0kMaFOaP4Zu-4RjRCavt6DVTIdge2SZgIStqfBix-pSpvoHloaeFNXBQvW1Ed2K3Cfo8oXmhroTSgk49Ma_Ip1QHXj5rjdo8ByoIk1eP3awUsxm29FqvBH18KOKlro4lOduv-lECjZ8ZPhZwJoB9RAEkRrQbf96zQPu6U9536h7SznfySJxFgU1UXS06snS57KsZ2BSNzciB95a6Lhx_FH3DognkU-6lr-dPOC3gUEEkoVgcvqKqRUSCglKM96uJaUoy6iT7swrlN6dC4Fvlvkcph5VD94Wcjb2Wx8JYXQhEim2eWsMR88V0IFPDpeCksOV9gOoZnViLTCIXl1KHk4kBUN5Rt_TdJ6vNGaPXuKPV9QHqavtLafHFS77f4f0-VW_4J_ZR2cNwCJpDGuu7AYrrwuPYEY3zEoOrffixy-Irix7osoRua0fkDwdoYnmCK3kPAR68Vv_PkisGSswVwgXhfBzDzMUbA7LmRmrRc7VA_8mKwQbG4T0_sZ4G3BZSRjRKvwBTfZVmPnI-ygvu76sxqjDglCGefjCIBvqyWUJl1rr_JI-daW3Y3F7wPp52tbk6MLb09OR2EjOK7QjS5VIPYsyWE6us5blCbRyRx5jN8zU93effZwT_xsi1wh5juIXjPc8Vx4Gja8Z94kQk03714Y7ZmpBhFtDvKNzV_lxV-FQr4vupDj9Ifys3yJQCZlpDq3LzpcJrqAIbfpCl3W-Vfo-DvaZ9ADowNc7biKwBoZUF1mOvpbYqoKY3d_LsBtFARadorw1yWZ_Gy6pbidm2w2Q5LVR_0zhuuEhAdtr5bXIYJE-u_wB_7djLS5PNssfvippyxO4ZPqvTGOvOgDCjICvcEf4aFZhLY_TZsjkbVo6QBTISUod-Vu6-YnI4JAkXq0hScG34cxYOT22Xw7gvU7G4FiXRCp6GdSnERpvC25lPfzX_yKbyGhaAv23y52DZzC0DfJiAQND40SfsaeKu7O_ur5c3iJhczb0ANsiMgRA_ULV2SVFCrAfQKRaObGL0tZ3K6znXcMqyIJcS9Jl4lCcV1aY3JPNTgJJx51sQ718J_vcu8rDUktPrSzpzO6eu4HLlaTdEhYlVcI5hC4N0W_cSO9XETOJsKk_GqTbtEDZZepiTTZuT8RsJEawUNbMPlgbRPEQsw0PIFUxbfVWYI3-4rRVjRaG4bFRwsExhToX4Ya2CtIqR5REtEL7o618Ocz6KdVdEsu_gXSylAcsdVk242ddJTknJMVmPCvEBpWVA-DT2vCuKAnG0ZocGmz2ad-Aq2OtqmNuymu9nll5uTuQ3ZMlFn40UKsowDh23TbJywISM4IehuqIyDnbb913v\",\"id\":\"rs_68d3bd5f0b748193bdad7b450ee649250e48741d4d14670c\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":19,\"completion_tokens\":72,\"total_tokens\":91,\"cost\":0.000371875,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000011875,\"upstream_inference_completions_cost\":0.00036},\"completion_tokens_details\":{\"reasoning_tokens\":64,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.195328042s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_azure.yaml new file mode 100644 index 0000000000000000000000000000000000000000..34652ca00204d966cf8157d260c9499cac80124d --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_azure.yaml @@ -0,0 +1,236 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 282 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"provider":{"only":["azure"]},"usage":{"include":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Respond","reasoning_details":[{"type":"reasoning.summary","summary":"**Respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ing","reasoning_details":[{"type":"reasoning.summary","summary":"ing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.summary","summary":" Portuguese","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nThe","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nThe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.summary","summary":" wants","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.summary","summary":" me","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hi","reasoning_details":[{"type":"reasoning.summary","summary":" hi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.summary","summary":" Portuguese","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" keep","reasoning_details":[{"type":"reasoning.summary","summary":" keep","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.summary","summary":" simple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" respond","reasoning_details":[{"type":"reasoning.summary","summary":" respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" either","reasoning_details":[{"type":"reasoning.summary","summary":" either","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.summary","summary":"Olá","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.summary","summary":"Oi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Since","reasoning_details":[{"type":"reasoning.summary","summary":" Since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" “","reasoning_details":[{"type":"reasoning.summary","summary":" “","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.summary","summary":"hi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"”","reasoning_details":[{"type":"reasoning.summary","summary":"”","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal","reasoning_details":[{"type":"reasoning.summary","summary":" informal","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" think","reasoning_details":[{"type":"reasoning.summary","summary":" think","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.summary","summary":"Oi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"","reasoning_details":[{"type":"reasoning.summary","summary":"!\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" fits","reasoning_details":[{"type":"reasoning.summary","summary":" fits","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" better","reasoning_details":[{"type":"reasoning.summary","summary":" better","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Maybe","reasoning_details":[{"type":"reasoning.summary","summary":" Maybe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" could","reasoning_details":[{"type":"reasoning.summary","summary":" could","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" even","reasoning_details":[{"type":"reasoning.summary","summary":" even","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" include","reasoning_details":[{"type":"reasoning.summary","summary":" include","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" accents","reasoning_details":[{"type":"reasoning.summary","summary":" accents","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stick","reasoning_details":[{"type":"reasoning.summary","summary":" stick","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" minimal","reasoning_details":[{"type":"reasoning.summary","summary":" minimal","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" approach","reasoning_details":[{"type":"reasoning.summary","summary":" approach","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" overall","reasoning_details":[{"type":"reasoning.summary","summary":" overall","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.summary","summary":"Oi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"","reasoning_details":[{"type":"reasoning.summary","summary":"!\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" feels","reasoning_details":[{"type":"reasoning.summary","summary":" feels","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.summary","summary":" more","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" casual","reasoning_details":[{"type":"reasoning.summary","summary":" casual","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" friendly","reasoning_details":[{"type":"reasoning.summary","summary":" friendly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" aligning","reasoning_details":[{"type":"reasoning.summary","summary":" aligning","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" well","reasoning_details":[{"type":"reasoning.summary","summary":" well","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" their","reasoning_details":[{"type":"reasoning.summary","summary":" their","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" request","reasoning_details":[{"type":"reasoning.summary","summary":" request","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.summary","summary":" It","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" straightforward","reasoning_details":[{"type":"reasoning.summary","summary":" straightforward","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" fit","reasoning_details":[{"type":"reasoning.summary","summary":" fit","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" their","reasoning_details":[{"type":"reasoning.summary","summary":" their","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" needs","reasoning_details":[{"type":"reasoning.summary","summary":" needs","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo072nH-KPdNEyp--cq-0PVVBSsrTy4XsFZoEdg_SdjJ0GGUofAe_vEZ4dGzuvpjL4UvXQ3RQHV-UdID9O76aNbCO4trP_3FM0xFTu0M2d7yCciadjwEVt7YbV4dd8DzgP-FD77wNzvQVzaDP0TJ7nTM6332j2Cds9q22dhBN0qGJYUFXMkybWQoyh932mLK3LjfmKJjyVY6kR-SDD0VCdVWYRlVI2XefmomTFG46K9kTMr_nEKrnm_JYx73_ugHk6aKuJfkqNe2Dyc8uYyOuBgx-_Ccx5wQ6VeYJl-VhoZRHW4jbCdlSs1vALh3154HJqRRT8bN07miR2CotLBe9mgwN83irOysISfLbDiinwdTQkb4I06b3wg5nhPF4flJM9KcbBYE_xdh4KiU4fXy3Mo3DKV5Qmxug5K7rZr2xz0isvpAYyH59j-4rBbUMftaBZe5QDh7OZfeX6XOcnx5KPrKgcCSvwaSt0l232-HZyEOqveyQDWNBF9-LwrZe6SKHLRJxwO7L7UhJcFvSvw6CDKCYrSk1uTy9vKucnuVrqGTwIet1eMHzoBNnrtpCguQ5dV9kOMBAGRLcQX-b4Rgaag9s64BV7i6JcW9r_UsgjQeWVWEMSN20xNy5H1kxApkMoB9jmkSu947zGaF5dSORcIhAW5AGjGqjs-rRtqt3XEEi34L_1onrIM-u6aFLaPHpzSSnx-rMQC81dXUS6rYNrc0QStV3TyS8hy3QcUqgrTasFSym3hGZCCz2yvl5OzFRbE7Lu-S61CeS1RprJboIq4FuzJ2EuR_VR58Cwtr0srwjCE_phJ4lvdJ6e4PS0VXuhvE_UiLUe4fpfY4-S1NiyVj0v5swJHPhBUWU--k07SP2OH-_8G-je6MGiXOv1cZ18ZN95kkm6tWTEWNLNq6efBTuRPUZWGRI_tbo9MB4Pt9NiQNEGBl2xjQ7tvRopXWrt7fp5wGP683xb2lx7OfZL-Kmzm7Sao_OqFboCZnJ3OOdHfy84QD-dihyAf4x8Crk9Zf5dalRGcQLJoApfpJOePQ2n5bUPzEqT_ibsKCN-_naEuowrnA2ejJhwjxMoPQ0J90_6cAfEGmdp78ijcNRSPgjZDFLLQFt6iUGgGzQ_bgeZqBjk8V9_NGzFnx-bOz7NWFoNqNdhFgcMfufz03IyBrRz8lQibjokU-LUxHviMw41v9Z2ZCQyQEgJFbtGWAdLzXU1wQ74lcV2CRs1PTPoEq1wY2Brd1SSruPqvoobh5rKTQnLu5VDonYbLldOmCF0vDlkB_ShprjkAzvfbtaCOtJhsDcuWhQxLeGT2t7GNy0dW6XiDM7o1T-9MIXL1e4OQ3xvWl4Il7GCtWr89a9B1wDoTYkzQ342REhlZDmRq66ydPY=","id":"rs_68d3bda3e15c81948b941d898e92fbc202e480e3ecf90aae","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":19,"completion_tokens":72,"total_tokens":91,"cost":0.00074375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002375,"upstream_inference_completions_cost":0.00072},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 563.57075ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_openai.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b09c2d140bd89ebe89ea86f9bf1f8d99278bd9d4 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_openai.yaml @@ -0,0 +1,228 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 283 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"provider":{"only":["openai"]},"usage":{"include":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Respond","reasoning_details":[{"type":"reasoning.summary","summary":"**Respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ing","reasoning_details":[{"type":"reasoning.summary","summary":"ing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.summary","summary":" Portuguese","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nThe","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nThe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simply","reasoning_details":[{"type":"reasoning.summary","summary":" simply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.summary","summary":" asked","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.summary","summary":" me","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.summary","summary":"hi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.summary","summary":" Portuguese","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" think","reasoning_details":[{"type":"reasoning.summary","summary":" think","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" best","reasoning_details":[{"type":"reasoning.summary","summary":" best","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way","reasoning_details":[{"type":"reasoning.summary","summary":" way","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" respond","reasoning_details":[{"type":"reasoning.summary","summary":" respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.summary","summary":"Olá","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.summary","summary":"Oi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.summary","summary":",\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.summary","summary":" of","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.summary","summary":" are","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.summary","summary":" common","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.summary","summary":" greetings","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.summary","summary":"Olá","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"","reasoning_details":[{"type":"reasoning.summary","summary":"!\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" because","reasoning_details":[{"type":"reasoning.summary","summary":" because","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" feels","reasoning_details":[{"type":"reasoning.summary","summary":" feels","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bit","reasoning_details":[{"type":"reasoning.summary","summary":" bit","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.summary","summary":" more","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal","reasoning_details":[{"type":"reasoning.summary","summary":" formal","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" friendly","reasoning_details":[{"type":"reasoning.summary","summary":" friendly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Keeping","reasoning_details":[{"type":"reasoning.summary","summary":" Keeping","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" concise","reasoning_details":[{"type":"reasoning.summary","summary":" concise","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" key","reasoning_details":[{"type":"reasoning.summary","summary":" key","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" app","reasoning_details":[{"type":"reasoning.summary","summary":" app","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" might","reasoning_details":[{"type":"reasoning.summary","summary":" might","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" support","reasoning_details":[{"type":"reasoning.summary","summary":" support","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" heavy","reasoning_details":[{"type":"reasoning.summary","summary":" heavy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formatting","reasoning_details":[{"type":"reasoning.summary","summary":" formatting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":";","reasoning_details":[{"type":"reasoning.summary","summary":";","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stick","reasoning_details":[{"type":"reasoning.summary","summary":" stick","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" saying","reasoning_details":[{"type":"reasoning.summary","summary":" saying","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.summary","summary":"Olá","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"","reasoning_details":[{"type":"reasoning.summary","summary":"!\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" directly","reasoning_details":[{"type":"reasoning.summary","summary":" directly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" feel","reasoning_details":[{"type":"reasoning.summary","summary":" feel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" happy","reasoning_details":[{"type":"reasoning.summary","summary":" happy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.summary","summary":" simple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greeting","reasoning_details":[{"type":"reasoning.summary","summary":" greeting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo071rklNSITSrGou20yk6p-H7W3MxumyPcxVf3Hh55T4s2uS_EWjloDTpp1k9jkZK_oNlEnFfoJEXGAM_EOJs8fcYJEML3aZLm_oCK1yj4TGGg-pJzt-p2OGFhdD-t4SlQPPCVfy4pY6pCXZLm60QRdcM0ac2GbLfCyULOgWxVIrmKywN-Re2xuxhk6b0bqsoM6XLDlBQkeLRVR9Cqw6zsoG7-S07y-YTjrhNpedJf8OSoMD26DfiH8LD4YWTq4VjKRFDSR13Q6iKisyy-94si9Wi_s6J9KkfKUhFP0E_p0dBazNi9toSVagyck5uujgq0Y3axCr6CTbCktOXst480w-xEbEDGPXmfBJikLh3J0b-C_tDbga1r4Z_E9eP4PCJMnyHTOceN2x1_T0IMXAd5xskWx1ILF5kVePO5AZSiOwL8NusePZ_Oha4QcPGM2dXRD1aq9colIa1JJpTBM1_Pi8GYQFD4BwuTpGTrfHpSANc8-SPjZDO0BtU9QJ9zmNfdzFH6OR5yHfrTUECeDfAf_UDG5Xvn-S4wVhXd5LSjeqPq-JFYmmB_bBwjvi_b9NtqO0x9wvuMRcuOLEQVrvn3ST5NPeMTtu8rowJFBl3_2GAZVgU1haJJf3LqsT9vZ5awRwAgos-lExPxp_LrNPQ7MMynjKhgfxzBjpbx9-OPpPg15alCWWYs_iQakulqcIQ1MAPsL72PbZmnBuiHe0A-RZ5fXRPC1JaIXQZxmtzP0VBJM57IERup9GmN2-oRYFeNKnz-AMxwMpBjVRS5_bC0bUTCXxQshD5az-7Y2S-5XzMpi7rTbqwEls3lu5rWuqc--gKnuclcvad2BlwqmjtQTEt9u-Het-r-w7WR-dLXRWDSNkf-GCGGdmjinL-ZlZiE1WopcTeVTnyTuTv-qBtQ-03r5TixZSB7UAGf6xu3KrJDDce6hIEDD5HaX8bTwCaWuPwujDqs6m4aStRerIeGHuORUDHUimOk0Vl-rBtn9jHrvrVHA54agwDiUJj_eiQ_n7OuAep4uFf6n5fWm0EVNH5o4mcccA9ln6WnLsEaI9-i-aAzZ-G4R7keuJvTlz_yB2ama7AE9ohiUUrsonKzyJ2AwsOQNOlsfl_MiHZ31NDr-oku0ll7eQYGzny0oX4rEHYFDkymIGby8iOF0OjQBPtST2FAOAHbgxY3jT9VM4N7jKG-NuNhZZQazlC9QxeIH2855yE0qI9JLwK6TePf0ycXkt3GDV_xFJX-48V5tcwNS4=","id":"rs_68d3bd684ab48195975cca6d4f577f880de911a007184f64","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":19,"completion_tokens":72,"total_tokens":91,"cost":0.00074375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002375,"upstream_inference_completions_cost":0.00072},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.054729209s diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_azure.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8f7ec2a6535e32f96a21b2b07966b3fa8ff5c744 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_azure.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 520 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707112-SHVSc7WvzkODy3nwv5sq\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707112,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Gathering weather info**\\n\\nI need to get weather information, and there's a tool called functions.weather that takes a location string. I can call this tool directly, which seems fine since we only need one. I plan on using \\\"Florence, Italy\\\" to ensure we have it clear. After running the tool with this location, I'll check the results. I just need to trust the tool will return something reasonable, and then present that information clearly!\",\"tool_calls\":[{\"id\":\"call_qQ7LiNOauuYouxSM5ci5PCuV\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Gathering weather info**\\n\\nI need to get weather information, and there's a tool called functions.weather that takes a location string. I can call this tool directly, which seems fine since we only need one. I plan on using \\\"Florence, Italy\\\" to ensure we have it clear. After running the tool with this location, I'll check the results. I just need to trust the tool will return something reasonable, and then present that information clearly!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo072sVHHC_JFrgGu072vONHSI4HLEe1naxobGb7iCdou2Qu0Ej08uuCOvwFWsQb8eK23H9hq-RWAsmNjZlGA7qfzZ-biqZwZhyNrNTkJpWF3K4ufwfwZ0k9j_0Cg1XNO0brTiUaDfS8tZlO7vKmJ9BkMAKox6NnabGJZ4EIJsNDOcJ9-7gXLil4W20LRbXwBoYc0P9BQmnxXb4KR8QCHwIkx45UOpCOPMkZcbQfRm1lJF3a9pTQRYb4mbej-IKKyrDVkmp5apVIV3Wd88E1UduHWdrpNncFGG2oVNQL9m8D6kt-rbkZfxpkWcvN77YRKrjlinqbGMpzdPYJhb4WBydzkb-c84ya6JE29AYxZ0_1NxGCsFnLRZAlvSlX567oJnayiNCja6KkHOGlNk3_tnloRVr1l340ZKDHRAwrkmg0pyvSZwovgRSGqiKGdy_1fA7J4UKs4aZvFKEVm4uMwAhlxHiP_JKER6kh8lKnUyo5AWypuFXfETnlCDYWDggeab7pEf8C9Hsjv1z1zXzinEjAr1YjA_r8GZ31Uo1ymAy8zpnKtbmD3rpyIU-H-EgFiTVUTar2cQIPja_GOk5I6nTBBxVAVNeRyxTACuPcvlEurMBwy6JEBnHK74tP6mnFT3JLDTp-qYK9nMWqoq2YFzZbraCi-zvucbIHY_HUUP4879L2YJ_I6a4wePNHt-9cKkc9tjsXCUBw-kdnR6U5w75BjVgXy-jYSB5jSKXx5lwmcXEsonoRNRhk2cPtR-65xTZH_RH1hbPYJKAGSO072YIa5gNWfJbp66TXOEoztWsuRKqbUByJTT8EPpw4m0BWRcxOgBY_dWZc8zcluHCYEXodDN3P_g6Vb0OMl5F60uictIQCXTp4c8GAv0mMlge9vjAuwIR_nNTfZyzeI0Dri5WaOOG1am_XZlWXvFwPWfzdALcdou0OglCXM35q-2cIXlxsqtmKxfybooAZTBGn-Yu1Xuw3WKTHEqpRNGTQmAqR55kI_S2VCaBvPQzN4X9ODwsJm7qRIscJPifhWzrnCYusK_il2ZH3qVMe-REwfEB2uP4FwR3luuTh6CvKQRQx2CzUSVnjnTlygEnjghyrPhBQbi9Y8R90fgY6PBBCW8cs88pKeNYw6pGIi0p81qKeF5aaEZEYZ4TobdWlmZ1b2ed0f8qmADnIxvaWEbi9X0gUpp76xdpm16xHfxxW2LNtaF0j_PHQcy2A8G4bYHoS_Rtcjg71kmxuERv00DWVYCV_ApByMbxnGUKNBKi2PSGc9UZj447wTxDRx3sCqo3Fyygybi9u54dDoQ0SjOaEIejhJJ2gT84iqN0o78r6aGiJLeP4oZoRO8K84UXOzg7uglbKHzC0Wb3mJ9e0TCqq4lHcLBKJHiADYseMIEjm-Rh1I7Tus1WRonUMNSXE3nIfo_MwLa3qEAOuo-iz1PX67EPFF7wogDukSGwz3iA_xJXXZdFPQ1cjpssmn86OK-Y5_b-xlZISCpPkbPak_jo7lj3AyOxr9LsGUy7NyS_eR_qSeTX6R3u5eIfYYcE6NvzwB8dU2fb1HY1HuDijy8ukz78GuZgVczO5lbZZgK5atBT05I2nS4JI4wLVUYL_x54s0pw0biwOsEBTAy5A5iOpFuzCYc38YtjNqRU8Yhiyccs7v2valld-0w1d9xnpO5mRxT1oK1mVRK1bucFMv8QUW40I10KgjBAFNfUqG7ef1DnhFUqXGCTivu_CxTXy9Q3XhdNHeyk-IwmHNM55iLSpYzXycPQADQbn9v7_xeqKgQWbWDgAN-U3hiEfmO39IPhYkRarVCuFhDdQCKIqAG0KeURo4KOvQyJx1Tc8wvI15DFc4M91JhjeEFavu7KcGqxAnbeMA9FTXhoU0dj6h9NoZyhNGAM88=\",\"id\":\"rs_68d3bda94c6881909770d8eb09935c5b0047ff828f4c5408\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":63,\"completion_tokens\":150,\"total_tokens\":213,\"cost\":0.00157875,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00007875,\"upstream_inference_completions_cost\":0.0015},\"completion_tokens_details\":{\"reasoning_tokens\":128,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 520.082792ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 772 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_qQ7LiNOauuYouxSM5ci5PCuV","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_qQ7LiNOauuYouxSM5ci5PCuV","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707117-GrVr8BPVX6BpyCl19MbO\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707117,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Right now in Florence, Italy, it’s about 40°C. Would you like a forecast or more details (wind, humidity)?\",\"refusal\":null,\"reasoning\":\"**Presenting weather information**\\n\\nThe weather tool returned \\\"40°C\\\" for Florence, Italy. It seems to focus just on temperature, so I should present it clearly. I could say, \\\"Current temperature in Florence, Italy is 40°C.\\\" I might suggest, \\\"If you'd like forecast details or humidity, just let me know,\\\" but I can't call another tool here. The response needs to be succinct. I’ll also mention that it’s hot out and recommend staying hydrated!**Finalizing the weather response**\\n\\nI want to keep my response concise. The tool doesn't give time specifics, so I can use \\\"Currently\\\" or \\\"Right now.\\\" I'll finalize my statement as, \\\"Right now in Florence, Italy: 40°C.\\\" It might be a good idea to ask if they'd like the forecast, but I’ll stick to one or two sentences. This way, the information is clear and succinct. Let's deliver that!\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Presenting weather information**\\n\\nThe weather tool returned \\\"40°C\\\" for Florence, Italy. It seems to focus just on temperature, so I should present it clearly. I could say, \\\"Current temperature in Florence, Italy is 40°C.\\\" I might suggest, \\\"If you'd like forecast details or humidity, just let me know,\\\" but I can't call another tool here. The response needs to be succinct. I’ll also mention that it’s hot out and recommend staying hydrated!**Finalizing the weather response**\\n\\nI want to keep my response concise. The tool doesn't give time specifics, so I can use \\\"Currently\\\" or \\\"Right now.\\\" I'll finalize my statement as, \\\"Right now in Florence, Italy: 40°C.\\\" It might be a good idea to ask if they'd like the forecast, but I’ll stick to one or two sentences. This way, the information is clear and succinct. Let's deliver that!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo07239N3sJfPtNXtUggbwbSwwn8W-nvhd9fDiuXbseMjdofxAPQRtWiNWokoJC1aQZLUuA_Lw9kSKLwM-kPmIWiaU6IARsIcUnWxnG_UrOGA3jWGgt5XgTBMaTB3cdHeqwqpDO2oLGRB9S5qheAgdaNYLWzTk-Vm_eQ7qzt9ORd5BfyAylEuObIZEEJIHIRrbjeIPAbtuwt36HhyJW1OcmWO2rK208sz8z8B0xXBUe_XwO4jQth8U_ddH_4UOMb44xmbdRSRu0IYMG2tY6EyTsfBpUk8aBXxcihcpthYZ3QhBoLOih7N0fa7NFkQq8uedMtcj2NwpMxIuiaecA34bLZobIRINCO5J-KOVqyT6KU3aMw04aSOutg2nYS40nRKiFyRfu_E503DZhhKzP5g2d8Nwup9EvgwFR81YbUTmJ0Dmp7kqmFB7WTbQ3-EB8T_Wtc8-fDObnAKCfyjL9RWM80Byi4Il3MTub3nit7W_c60SGK__s3eFP5qGjSoJC2I_r8s0_uepSwoCKePfs2gp0_9sj51uZCFZtfa3V6DI9MJyFmwWNCtkOvGZxDHHsBGO2sZv9SgiNqAFJseYJy92o4KrgQysC-dIewcpjKfpdcod0UoTWH6nLyRkzKqYeq_D5ZR5aFwg_nbM4m_YfUvmNE57ksK6nHzQLgjli-2LvijvvgVukdlFrOb2YRRDLybb7gmvcS3qkeZl8s-G842m2nmNUPsCeVGgptTsE6GrBNQ4gkJB1IM02Ur_kHX7pt-qaUmN1Je3NfaGFILDJI9jDICa29NDtRL5ZN8_re-sMHFILWLOhHmRTDy4PljFALUlWVerKj8u2W6Y_Wokx6AB1NyS3nPQrw97DHaCi1zJ1csYbc-Y8-N5OqFH_ocNVeLTkS90-PBMHEqgtAooo7oxHA9ZzVnQIKkXeDnKiVeMYtsBdWhlqath2bas7V3Ly0Tngnc176cY6D5-A67-Jj2ixwsUOtBIFiHx1YISI4YFfgQH43yXcWhPLZUFEQyVln1j42KTLbjLL9qK-6IbRYvtG7Fkvg_2pFF2v6dn6I4qA5F3oHm4zv9lcpdpNmdpFTR9iPjWXzuAGj01Jw22PnPpcrrwusVR8kSuXdvMrk0-C_SMqGMPSqtvdjL76Db5Y8h_bNlBbrG4AImvuJ86TgF5Qom8jq7fOmcVfwdQCovuFUoj8gSw85N-a-87NhkxQsNHHVYn6vK4JglDTNF1zLD2G8pkwwRZfY6wSo7VlQSb8U3lzsz9txXJ8iIufig2-5zDcVUl47hZlbUheQKmYRRBpTav1qn0s5twOfKU7Rf0J34yDenNZssM4fIdgzrJnY5QOaHJkQ16qjvSlJJBg2NuVUibi9vMB4YHmCj5S6-Y9yMWlqfYW32CiJJxmTmRGX6O17x_uZ4RYj2OPryUhcEKLViwMsRYNgXcA7lcD3CeR31BHaafx6Y00v6TCieGSbv2YbNdIZY1hAi6PBFhTMUoWPClH8lSVD9TdwmVhGxIeUakS8IK6HzxiVyn0XcqwhoydwV9ciaxuAw05UgCMuEZcS8Qs1QLivUC8Esbkl5DWYes4obN5K0VfObYD4_RCr1DGCNJaWIkaWwxZNoXxuChCX-UwbxvhTLoMNceMjABjd8IAjMdMcLlTmDWrs-CF4ZuBqaUjcBb2cQfx_TlC_4ZYliBAEIkocsaxsj-KU5dTMNrVmsY-sk3V9rqS7eRIRh6btzt2J82MD9n-_AXm1RnAb8zr6_EXxv55jSKAc5po4yYCQq2E_ALKP-h3Y9tJXE3Q8rV_mTnEtt9Qrbv9i89rqKKoaLdTv16fEqytSkWMRrg-UCd8zLVgHOe4LvClwILh8uZc786steCVlelYe_m9lqmOA13MHTbMFBcdvktm4f9cSvml_b4pGM0tSxSpUoN4QXgl3mlZH8MAxDuluzw_jxlwzDbpg20XNyoAtm5Uh-QU3HJMNWAF8FluyeG11B71QUXyNTVHAmgIiO8hFkwBAVYsqFydd_tjU2k4Qy7YUcvDmxMTT5vbLnnzMU2oGjk1Gy1IVSglbmcQPVFMW-lSigj3hxoyrWLj3TDyhKNi5IhZWa3QFaAvl7i7dJQrd5K9jcgV01-d2bR1u1AFdJRQ4L1fh1IyU42GoLbh1ihXJV1745_L7BnXtSvNH49pWzwBE3E7pZ2wlapKpeX9ez8jtxw-VL6gwvxBsI5Czq13ahx95nYBi_7KMr8Kwv4d5K3t_KVP_2Gw79Ys3oJYlQRGtQhI1kIrN9ISiH1Rz5hj42tNgy4hMYS0z9uezEVl9vCryJ3X8SLJRXsPQb2gHuIqUfzqhrgvosv7aYBiHPbbTLBq8Qli-uQs0t7RSYskD9ItsaI91xoCQUjfTSDODUW6iDEM7O3CrRazMx9skTqjZj_uF0KaXYAzQvaD-Uw8_R7qhO1nWDxkTzjzSusXWuSZFamNWDjtXzbsesZcJZIEdoHE45kH7SzyifCPaeV9cXyzOI3\",\"id\":\"rs_68d3bdaf58b08190a300a7ecc77fd6b6\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":92,\"completion_tokens\":289,\"total_tokens\":381,\"cost\":0.003005,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000115,\"upstream_inference_completions_cost\":0.00289},\"completion_tokens_details\":{\"reasoning_tokens\":256,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.018084208s diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_openai.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2827db00949c4f2b8b03aa705fe9337279e57c18 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_openai.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 521 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707051-ayTLZRnOYjQfQnGHXIc8\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707051,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Checking weather for Florence**\\n\\nI need to get the weather, so I’ll use the weather tool, functions.weather, with the proper location format. For \\\"Florence, Italy,\\\" including the country is probably necessary to avoid confusion. I’ll go with \\\"Florence, Italy\\\" when I make the call. Since we only need one tool, I won't bother with the multi_tool_use.parallel function here. I’ll directly use functions.weather to retrieve the weather and then pass that information along to the user.\",\"tool_calls\":[{\"id\":\"call_1nTwPCVFTHJYq0BDbzlqZ3D7\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Checking weather for Florence**\\n\\nI need to get the weather, so I’ll use the weather tool, functions.weather, with the proper location format. For \\\"Florence, Italy,\\\" including the country is probably necessary to avoid confusion. I’ll go with \\\"Florence, Italy\\\" when I make the call. Since we only need one tool, I won't bother with the multi_tool_use.parallel function here. I’ll directly use functions.weather to retrieve the weather and then pass that information along to the user.\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo071x45Ao4baXtnJzPWvz0pXKlKDarCrPqJaEKF9mnFZwuK-0Z0v1w5-_mKaC6nxBxKWL4NbDNVhVe2ktZpK8fH-eTbzW7SHtNQ_PyLnI4_1wp78urI7JiMeb6tBAi54GxrWRDXaj1X97W3PqiXsS5MSl9Er6hAQOcOo7xq1BEDxaPuTPZpMyn6tbgppykAgU6HopePOmoFNYuSAp2i4v0TOkFUpIdfr2e8F7NCyPULXKzL4-xijDkIFgtagb8txlt7Uyp66vEjAd-Du2Z5WoEYQ6ti1qEL0Oguwwf6BN0Jg6sWhirNcNC6d9hodPQmsIcbIe3BA1R1ejuox6ZtZatEPFsjtyDg6yWaC9v349xkvCNPjwGBBYWb_G2BFcLgjOeyQBmJ2uDYoMDcvQ4gCcNaqIyaqTZZ4HLKCs1VjqWpVaSA3pBOvFoEpGOK8dm3z8d1omMBUHKR28K-U3nylA8x2eks7zhzJqY7_AcvDpK4ElTcCEYYB7NEZq5_hml1GxIzU70eJzCMRUGhk-e2bjsj_9jtLCkxpZz_b6Q9T0xilJiCH53p9n5NDQBpubnUKb_KLF3JD_-NhsYJVSJyHAsK9t4IA_SaDJoR7bYNhRT1M72WjYQAVe07In1OaLHM0s0uBVG9MQmuQbFPPGxaHCE0OkD0dI2Ui8o6cGFAMI3vYvTrD882EJ7ER0qB2v4K11b3qApgzGbmSv_q0qaijIX_lRVDg_h9nvCGga8XEy_NhrXBV93oUWo2B5m0T0TeghHYQsGyc2GWjHMIOX-zez0Kd2bq3KuJle7R0wTddRTYSDmrB73BXcz_BTxBEAhFBaCl4UrVeiVYMPcVybb2nc6F4N42fUHkSuCWgeXuZ_rFtYaodWWjfBZPcjUQJXqFaSNq2dAQ17xfr1cG7t-VbMcG2eGtRd9aRDCaSeA_a35JdMLNRy4CNlYBfN-qzlZJG9Mb7aM6m0rVazA6N4S9AppUtN4inigyVLu_c9Ud06alVlV3t_FjqitT6VIjIKDI64tZY4sKGH1t29PipsVl8wk3ExGFkxphREJmyvQxVIIRgQgOdSdk7GbGiLOEzLkOBSvcv6Jlv0-TFRxU2PbW2uyLK8kyZdB_pe8Y5Y7rDxJhx3SLNmni3YYLtLVJZ2qMEPlTHJOkksQcRIyj-37irt0Vqs_UupfsL5rM-KA5ci-hramfUZec6GrFhpl2gEfKWUWheAzOoaVTtBAMoPNgsSWeI2-qRYiQstPHYJySXj-lGr8-Dlp74vWzfje5bkcwMcwi0FvYHCmJlbbQizO_kVsUAq5tKdCIUZn0lhTjXmyyRL2n3b_3z3cmZxavWJWtPRdHo80j77ffNaUF-IAi4auMEqMjWYk9Uayynsc3Bge8yT0d1nPQOlhtWt9B-_sjAFJMngYuQWDjH0ZPwhhqnRy6-euIvTSWPj5JU66Gw5lPpkLeAbDspycXswqY0zdbmJjZb8x7qhOm7w5lYgYIuAK8N-gHjkfHQJXaw097Cjw7OvcH5cWGB7Mi2-PvzrKPA7iF65BmvM1YIZaUKtwVPD9y2VirtTHmFXOaaypmQdPSzBuneVDvH3Q3OIudQZmqUwqaXshP7S_za_E0KOjqSpAPqtFZa6M1nxVakn3b2tBLl15QRWUdQr5CrP5hQxNawdMbN13-s7yubIeaekYIrn3MW141HV2dx4hNYjbeam8XKk5KUiv1VmeinmMuSqCQK6jqU4VGEBEaM7XZihneHfnA44L3_SSyXiZQQ40elRGm43__g=\",\"id\":\"rs_68d3bd6c9f348194b03f60f9a6ff9d3103533757e09dccce\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":63,\"completion_tokens\":150,\"total_tokens\":213,\"cost\":0.00157875,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00007875,\"upstream_inference_completions_cost\":0.0015},\"completion_tokens_details\":{\"reasoning_tokens\":128,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 627.963125ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 773 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_1nTwPCVFTHJYq0BDbzlqZ3D7","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_1nTwPCVFTHJYq0BDbzlqZ3D7","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707058-5DsIxNqec92OgWRvLpVl\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707058,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"It’s currently about 40 °C (104 °F) in Florence, Italy—very hot. Want a short forecast or tips for staying cool?\",\"refusal\":null,\"reasoning\":\"**Sharing current weather**\\n\\nI noticed the weather tool returned \\\"40 C,\\\" which must be Celsius. So, I’ll present it to the user straightforwardly. It's about 40 °C (104 °F), and I'll suggest staying hydrated. The user asked for the weather in Florence, Italy, likely for now, so I'll confirm the current temperature in Florence. It might be useful to ask if they’d like a forecast, but I want to keep everything brief and simple.**Crafting a concise weather update**\\n\\nI think adding the Fahrenheit conversion is a safe calculation. It might be good to note that it’s \\\"very hot.\\\" So, I’ll put together a clear, concise response: “Currently around 40 °C (104 °F) in Florence, Italy.” I’ll also ask if the user would like a forecast. This way, I'm giving them useful info while keeping it brief. Let’s finalize this update!\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Sharing current weather**\\n\\nI noticed the weather tool returned \\\"40 C,\\\" which must be Celsius. So, I’ll present it to the user straightforwardly. It's about 40 °C (104 °F), and I'll suggest staying hydrated. The user asked for the weather in Florence, Italy, likely for now, so I'll confirm the current temperature in Florence. It might be useful to ask if they’d like a forecast, but I want to keep everything brief and simple.**Crafting a concise weather update**\\n\\nI think adding the Fahrenheit conversion is a safe calculation. It might be good to note that it’s \\\"very hot.\\\" So, I’ll put together a clear, concise response: “Currently around 40 °C (104 °F) in Florence, Italy.” I’ll also ask if the user would like a forecast. This way, I'm giving them useful info while keeping it brief. Let’s finalize this update!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo0717qoB__VmT-Mn7H2ZaA90zbJP0wEiJDTJny8swHdHYslffWT2LfalBjizVk6S_NM-lbcem1kVAetvRHjYs9tu_d7wD8kB_011ZITIKmKY0rVAUXaWmiv3U5bvAYyipkAfuWLrKcYTGxhYdOY5Og9ZcENPa0DlSQ0fabuPZlNakhP-pHLKpn9uYLj6jFk6H43u1ohUA48PvXJjp7XL88LzzJhOBBeMH5A9KIYhUbjV9tCsF-zV8hnw9WPl8-5iYCP1qLDROHOxmZeRkPKiApvEfLVi8xF5Hp_lvGZqRG1ai4TytWepyDHsSnJA6Rit-FYbMNicAc5GWRZ2nDgn5AfS9xMzvUZDN16GiODFtCG-z_0TWbASBZxYwkI5E9hrC7Pw3YJ5bP1n91kLQu904Xy7reHr2QdC-9MNivFJRaGsRc2jE20KvES_aXDQhqU2QzD-YeCmfz59Q4ciVVLfQgG8y5IbXu1pZ7APzIhLtg3Crq8VOB6n00TFuvDGejNj_os8pFsoa6E7r8xdipJJbpaVipSm_zgf8dFxWS2i-cza2Knv6jqSRDY3UbBY9CAFm4ak53fBof04jNL8R20WrZx0vbQqUh5WcUWwXFAPSf9B5HzA38udsW2SHxbzlOaojP1eZsu4dFPwdf_ijTt54D9YIKxRj7QAxp3rqv4n4XSUnLxzTiCYGUeJKdRke9VFeewYTdVWKvGShwTmVxjvqs3m_hlRwXyjBLnDWxDTRs0MMwzWG6_8YktvaBYVU44r0iZQs9hYxNUoUWcYQDpy6KM3aQ5KHEOePpv9HsNcUP20uNqvYCOuhqCHIeEwwWYsueiDO5o4lxhyj8HLWK4ufbdH514VrslxkZY-o2tsqtcBw1rD9TVgwgaGvTPBv8U9VA-SRDmeatGDZzdEPc9km4_6jaa-42GwGYeg3exV05WeyezOwD0J6SVXZsGb_hN5y88ngxo26MAPrQvgtnGKY6lhfh9dPSOR18rnkn-SVjBB_gr02F7W06jUTOT_0ONBCqXFlCdzNQ5aNDkCZC2MbToFFwkRgVCJfKdHG5Bs5fGTbEQQPAVTp0kEOQzKElqw6fAuiOplr2hpfvxnvQL_YS4WJCZ1Si_szGPrMjgurUnyE5jzcz8tyKZTENC_aMkLyo1s-lKlKXH-hTqsRjvH3fGBTbP_Edk4tDX34uIGVj0h5XiNUdbcuqeRM5ngRjkRXPXnMAdmTBm7mFWN6cZbxTaxVq3TQIj0TmhccwfqzjmkgvSraEJoWGwqfxrw0DYA6UVkRFlXSgY4YbdfXyuGECPo1x1F6P7IWeIy0zyECPZKNjMP8Hk9W-rSYSxvd2zUjhyvbVFQZ9uqoNLlA7CleV5ABNxQjLtYFtbv8kteaQj6BKR4yHWrICNuQkKMDz9L7u8Jo0oRKZ2q-0tziq02MLSrnvF5vOsFgG0ZTmYSLyzQTkRWfYo7D_MFXiDT6t7nTilWgQNhTnmiodRXb30Flt8uLMYAM8wh0LLTafjyeK7RvqzzQbBDtBQ6AFWBng9Q6hDK6_lot96EP1F0THXtGh7ypAzXXlvtOokwgW_m_ApiMqtzfq1Tude_Q4mgQonnwD7OUFYbSTS34Qis-gBcDvtd6rb-FxuhDfLWraVh8sw6Fk1qfsoSkO17dC209w-q2yGBVGVOTISDgy9l87oES-LWfnCBPGiOP7_At2CPtHvZBaquAFyfRa_jr_J08uu_u4AVZV89gNCE10jyvfqjx_S0KYNLD-2VYnudXTcreESjNBkKW1wAgS8i4Ar4Lay82fTw3pKDfTmCSm_v9Tv1slzCyx3ChOQoQ5_gKvArPCWU7h2NGxkN2SMS8SOrZA5fZnoELG_jDPE8y34A9RfEJR9ADZ3fBO7gWeH6K4idnP6FFptgCreWUIhVZbCejKE3y0OHJGFEw2PfEpb2e7h50crfocs3PkHRTSAAfN0pPEFQnr53iXf0dPZkgxgZ8G-f_tYin7TYlulmpQfZVXaoB7lb5UTw_LkNLSKztOzI7pHbgfqpujl9pVqKSswRlq8dZ7qrtsOs27otFfblWL95gE6hJneGvDJLcY89h1HBTJ2BnZ6afx4fbqi5kIi0Ri23ZEA1_jnSehFlFlZkIXSUsmhIqp5MuNps95xM58eBkCqExy_oaoxUraw0Bc7oPf9hetGRFUME_6kCGJ4NLBZWlTKFVyVQQkX4eKZFWkDdzgQPwwZ6r_EBaZpynv4oQGw3FkIsnw4CeCW5FXXbYjHgsYBju6QW3Y73JrGgWty7LXG8AM8xaClYES_CMDRUkrUencJjvUT1aoc2EwxvU84pZmL20UFB81TPG3Ir-lFYKIY7tCmw=\",\"id\":\"rs_68d3bd7371448190a2b8b6f2b5792699\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":92,\"completion_tokens\":229,\"total_tokens\":321,\"cost\":0.0012025,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000575,\"upstream_inference_completions_cost\":0.001145},\"completion_tokens_details\":{\"reasoning_tokens\":192,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 950.966458ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_azure.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6c0abe211a25d75a2e99ccae6153bafb11a95db7 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_azure.yaml @@ -0,0 +1,731 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 574 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" check","reasoning_details":[{"type":"reasoning.summary","summary":" check","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" There's","reasoning_details":[{"type":"reasoning.summary","summary":" There's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.summary","summary":" function","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" called","reasoning_details":[{"type":"reasoning.summary","summary":" called","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" For","reasoning_details":[{"type":"reasoning.summary","summary":" For","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" action","reasoning_details":[{"type":"reasoning.summary","summary":" action","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instead","reasoning_details":[{"type":"reasoning.summary","summary":" instead","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.summary","summary":" of","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" running","reasoning_details":[{"type":"reasoning.summary","summary":" running","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiple","reasoning_details":[{"type":"reasoning.summary","summary":" multiple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Once","reasoning_details":[{"type":"reasoning.summary","summary":" Once","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" present","reasoning_details":[{"type":"reasoning.summary","summary":" present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearly","reasoning_details":[{"type":"reasoning.summary","summary":" clearly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simply","reasoning_details":[{"type":"reasoning.summary","summary":" simply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let's","reasoning_details":[{"type":"reasoning.summary","summary":" Let's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" proceed","reasoning_details":[{"type":"reasoning.summary","summary":" proceed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.summary","summary":" function","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" now","reasoning_details":[{"type":"reasoning.summary","summary":" now","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo0727p0mlw77V_zXpodNVYg9yFjHbJcfiIfSy1USN1CharF9oB0ULFN-aORBjFmF3RFZKi2AzdqpzW7MaB8UGNdMnfn7XwoSd6WfMhsKuzq-08HT0V9aVbSUqNBpHNQgM7SZrB2hEpc_uB5rS76zyG80O__xT-24w1Z9PN2zFP9DQN2LdF4RDMy43V5QvRpb3Gi70S9r5OzT_x64xFqDQfb1VnRPB2iMyA_Uu0QDc_iCCU_MGDfXPn0T6PhSaNzPkOMrKhYvj6IhA1MsurzDbfWAqaIa2wF-DgVJQpvuxyCdLhib00MexvODBMiSzdClFnbZjfr_4zdl8Rib1vTEyp-GIZ3clQEcxYDqqgUhnH1irXKZXYgZT196fzetIc4gE2ZDBpLdlF1dg7E7rMN5F4wGFfFw50pkwJr4NBr9JiL25W1kkwyTZgF8CGQgLDqmi9-XGAD4d2_d3epGxYCZo9asE8RmIllRQUOx-5-21wMsBauWcQe3-4VaHuMxzWlNnWj3-JUjt0jUfC6PS6A9MhhAdlesh68WeGqoE8jJavpVMNtT8JtFUaTTn4EOdzAyKFOMfdIycEK3yP1gQifYcOORTjb7Qht85_hlh7cOrPs2Qqm6_DlgXsbfe19zC60Fn4trnAGZO2a4DdqO_YEwCrF6tyztrG8H3wpYIMBO19r-qCAAEtQ6vGVR84tkr-ZArKHCjDUPHy4tedQOj_q57C9jt3aL7e-P2HygP0QVGIzNtQcV5qUTEhNfeWsoEZ9ImJmSPKQtJ2DIiDZ7E9lRQM6wOEAk_CTrZjUAASlmfcALclSS5vUf9_Kcf73iy3DHwcv3ZlWmt3zrF01uO2smk6q4-2uxFmQJJYhaER7PJSx_IqdAvUpjntMnJI4Ombor5ddkH52cZGY90j45YF7duvCsAqs7kcCTQaMYRKd1EZKrHqNORWiB6hZa5R3SqwSoRg49ce6C9jNZAsCNsU_nR4QNU-mv0YWAMGnu4zC2j6Eb7uHvC6bO_6xEiPzewJXqcxInQ4VSKH2qMOW94shrUK-riFkOqgxhry5DzIVlSgkp7Qcji0QeooiazMkrTOdmx5tfyVjX6u3QCZ5NuZLEqJHfrnfx9DijKZOcccMy9JuImPKkJ-IGLkae3ykisSJF1jaT3PDH9bZTokp0MTBy0hUg7fxHR16CuxPZA2gl1SeSctqkNDCx9wJbxvuwhLlX_UFJOXMQn_iJT8PYhfVz2uTr3KUxAqUkOqpdms2JuMnQRBC2Tpd4ubT-Ci2PTZBVCGLgzn0uNwAMuIf0VlSOqOpLXRGqRHlyF9fBEAF9DmtY7HYZItcVJiDPxmxaH24r7Q-tjN6srh5Jz5pkT-n9vPwXEvIay5z1zNa66R17rKvDqIlB4sbkH4NImEbitdpuffZNf--TtryfFsjvm1M_XZ3PMgz5VC2QAEC8oauDVsbeXU5o=","id":"rs_68d3bdb8cee88194979fe93538f0a26a03a190e214eed889","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_2ALLh7WlLxw9FbZya4iZ2SeO","index":1,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"Flor"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"ence"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":" Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":63,"completion_tokens":86,"total_tokens":149,"cost":0.00093875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00007875,"upstream_inference_completions_cost":0.00086},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 968.873708ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 826 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_2ALLh7WlLxw9FbZya4iZ2SeO","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_2ALLh7WlLxw9FbZya4iZ2SeO","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Considering","reasoning_details":[{"type":"reasoning.summary","summary":"**Considering","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" got","reasoning_details":[{"type":"reasoning.summary","summary":" got","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.summary","summary":" of","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" seems","reasoning_details":[{"type":"reasoning.summary","summary":" seems","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" unrealistic","reasoning_details":[{"type":"reasoning.summary","summary":" unrealistic","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" could","reasoning_details":[{"type":"reasoning.summary","summary":" could","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" happen","reasoning_details":[{"type":"reasoning.summary","summary":" happen","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" during","reasoning_details":[{"type":"reasoning.summary","summary":" during","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" heat","reasoning_details":[{"type":"reasoning.summary","summary":" heat","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"wave","reasoning_details":[{"type":"reasoning.summary","summary":"wave","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.summary","summary":" The","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" likely","reasoning_details":[{"type":"reasoning.summary","summary":" likely","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" delivers","reasoning_details":[{"type":"reasoning.summary","summary":" delivers","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" conditions","reasoning_details":[{"type":"reasoning.summary","summary":" conditions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" For","reasoning_details":[{"type":"reasoning.summary","summary":" For","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" question","reasoning_details":[{"type":"reasoning.summary","summary":" question","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" “","reasoning_details":[{"type":"reasoning.summary","summary":" “","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What","reasoning_details":[{"type":"reasoning.summary","summary":"What","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?”","reasoning_details":[{"type":"reasoning.summary","summary":"?”","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" output","reasoning_details":[{"type":"reasoning.summary","summary":" output","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" while","reasoning_details":[{"type":"reasoning.summary","summary":" while","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" noting","reasoning_details":[{"type":"reasoning.summary","summary":" noting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" date","reasoning_details":[{"type":"reasoning.summary","summary":" date","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 202","reasoning_details":[{"type":"reasoning.summary","summary":" 202","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"5","reasoning_details":[{"type":"reasoning.summary","summary":"5","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.summary","summary":"-","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"09","reasoning_details":[{"type":"reasoning.summary","summary":"09","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.summary","summary":"-","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"24","reasoning_details":[{"type":"reasoning.summary","summary":"24","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" think","reasoning_details":[{"type":"reasoning.summary","summary":" think","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" “","reasoning_details":[{"type":"reasoning.summary","summary":" “","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Current","reasoning_details":[{"type":"reasoning.summary","summary":"Current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" That","reasoning_details":[{"type":"reasoning.summary","summary":" That","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very","reasoning_details":[{"type":"reasoning.summary","summary":" very","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hot","reasoning_details":[{"type":"reasoning.summary","summary":" hot","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":";","reasoning_details":[{"type":"reasoning.summary","summary":";","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stay","reasoning_details":[{"type":"reasoning.summary","summary":" stay","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hydrated","reasoning_details":[{"type":"reasoning.summary","summary":" hydrated","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".”","reasoning_details":[{"type":"reasoning.summary","summary":".”","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" could","reasoning_details":[{"type":"reasoning.summary","summary":" could","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.summary","summary":" also","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ask","reasoning_details":[{"type":"reasoning.summary","summary":" ask","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.summary","summary":" if","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.summary","summary":" more","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" details","reasoning_details":[{"type":"reasoning.summary","summary":" details","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" without","reasoning_details":[{"type":"reasoning.summary","summary":" without","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" adding","reasoning_details":[{"type":"reasoning.summary","summary":" adding","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" extra","reasoning_details":[{"type":"reasoning.summary","summary":" extra","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formatting","reasoning_details":[{"type":"reasoning.summary","summary":" formatting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Final","reasoning_details":[{"type":"reasoning.summary","summary":"**Final","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"izing","reasoning_details":[{"type":"reasoning.summary","summary":"izing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stick","reasoning_details":[{"type":"reasoning.summary","summary":" stick","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.summary","summary":"'s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" result","reasoning_details":[{"type":"reasoning.summary","summary":" result","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" “","reasoning_details":[{"type":"reasoning.summary","summary":" “","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Current","reasoning_details":[{"type":"reasoning.summary","summary":"Current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" around","reasoning_details":[{"type":"reasoning.summary","summary":" around","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".”","reasoning_details":[{"type":"reasoning.summary","summary":".”","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" If","reasoning_details":[{"type":"reasoning.summary","summary":" If","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.summary","summary":" wants","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.summary","summary":" more","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" details","reasoning_details":[{"type":"reasoning.summary","summary":" details","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.summary","summary":" like","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" conditions","reasoning_details":[{"type":"reasoning.summary","summary":" conditions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ask","reasoning_details":[{"type":"reasoning.summary","summary":" ask","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clarify","reasoning_details":[{"type":"reasoning.summary","summary":" clarify","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" timeframe","reasoning_details":[{"type":"reasoning.summary","summary":" timeframe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" allow","reasoning_details":[{"type":"reasoning.summary","summary":" allow","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.summary","summary":" me","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" check","reasoning_details":[{"type":"reasoning.summary","summary":" check","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" further","reasoning_details":[{"type":"reasoning.summary","summary":" further","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" emphasize","reasoning_details":[{"type":"reasoning.summary","summary":" emphasize","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provides","reasoning_details":[{"type":"reasoning.summary","summary":" provides","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" must","reasoning_details":[{"type":"reasoning.summary","summary":" must","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" reflect","reasoning_details":[{"type":"reasoning.summary","summary":" reflect","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" output","reasoning_details":[{"type":"reasoning.summary","summary":" output","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" accurately","reasoning_details":[{"type":"reasoning.summary","summary":" accurately","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sure","reasoning_details":[{"type":"reasoning.summary","summary":" sure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" deliver","reasoning_details":[{"type":"reasoning.summary","summary":" deliver","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearly","reasoning_details":[{"type":"reasoning.summary","summary":" clearly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo073DETBtZrg43ztvEApKyQgM8WbQUj7QorLCkvuRpa691iXzfRlzK92PdJ7mlBEn2t_lEX4EPCJZoCUx4yybxkjSU0MSLmsscFWHn9vHhUcnFJNRTvupXeTxuGGgBQxeGumUkHrzxaXvq7lk2aPHOabF6UewQ1iTTIzvccWSoHkdRXPhuslAtQIXuz1IWJdedUtUBvysQp3afVk0gb2XOrRTfFkE_JlBqsD0Kb5vit8t4zc4baIRhcUShF-t7gmwkUOovUpI65ak8p27g-DuDGdx5-YpdxErFsz9Y1e15z_3KtLx-_PCe_lxUQO3ph1rnkm1WotMVOgsOR0343rCF8x_3ny5pWa-3VtlNagDOqzpkggNWYFB9tI2uL8byVuLsZhFj2jWEO7CnL9CVTmZpoW15tjO28dfOcEbnz2J-61DFmrLgKq5gceeWjrmBVx5344wuHl-OOsAghkrgNaMBCC-2VHYEIrhr0sVz0JiT1i06wFNpUUHegpW7ybSrogAzMg0qkayJif9lgmO4khdwhapXLSnWFs1anyMVlpRtuLSHLI-OdVb-kkxYPyPRlKeDWk_pyHepZvgAWRbABYhsssMJj7-WLy0HpK-fjX15vOhWjXP1efZF7ZSogWMYf9SpgCodxWuLgJ-JT7GjUFUaaEfv9XSeaVgI6lQYgzQoR2lxWW8HH2GRME_kphBLkDiZbQfs6-JDEzsvmqTHY_tXR6x6wPgUpfH3ThwZ1ER1UtTXwm-8BHHcVB3WriXrh8NC3To1Yg3AJpc6PP5d4APgYdqC-Y85az2EQB7cxuEQjBHo5fKmQOkHGZ_43zYlPEzkutjDRBT1ua0IREyNYc4CHticBY8X8HsdGb0OaXoB-VyuTwkaD09WEH9-ks_hIpRD9tZD5_ZQkyonsaC29CMDPkS25gSX2yYnmN8ezNWDEF5VRT7V_Tw9WMWfTJewLM_wguEkBHLzNmkd5oFRubTVPWMTQmaAveFOXQfO4kPfqKWCWX1mgwnUbFi8GLRvrSSu_pjbut5_UcDVGengaJRCFM1VSr6NbCFvcQM7e0rPrziH7CPjUEFC5W2STbQ1nfEb0jsxpjV8wcG9jdhf6rt1C99wY6UQFWXX6sY1UsK_Z0zqTkxIJrFHeX-952dVvIMC4ZYYXXpoUjIZqgqKyYRukQpCvOu6eYe4G_cTYjeNSZ74RGPh0QIQXVnrtVMon7NrSiDP-DYm_jXwggERelCaAXkJSn99hiZ3my_ITDGba3rM27IR7n4IzAaGgu5nkEfZVdhQzExjCCukbwQOaQzVsS6SaavlIXQYHUqJbrNfZBBSZD4PDfkLom_lZ7d8lY_rRy79IHsXP2-jgf_mHkJgRUJZplBQrSBp14zUR4I5Y_ezJ0x3Uvb7B9KO0T1MaDFRFd_NO3uiBiV27rYa9AD2sQSv6a-iCPzpVYS6i_8FvzVmUGx9AA-A-NrOpTk3VFoEe23UO83pQxbogoaScKC_RYYG6hOVIkRPGLpwylxzb3qfuNovquSGlfZUH-YBJGzayqnDDFqp8mSL5hirBqz7Md3YqHbSyuhYeRf3iyldhz7YUO048kySMGfItslw3f4bSPyr_uTJVtXCczWMNgoUyr6TA5WRU6rlUfhANrUws_Tr1wIPzTMkJvWPOuipZ5QkFqzxNCssykB9po2A6y26tEEb6AudC6k3-p3vvRqnHzFaso0JTrTyznLBHMM6ekxiFUH_ac8dmcfPcDn3s2MrjXeiuiil3D7JAerJAmF6m_rxvBkriIcx3Eda7y5tvIM95hPpKyYeRqqAI1moMVSfjoEuYdVouX9XSicupy2z4LZNCCVcDbncYwW7NCiVJkjChFTsEZa3-VAV6YCnbHSgyp2v-2bGqGfYU5Tp62h02JLr_Em6UoD9gMREFYKKsqbcF4cDpSpg4lkCrVXyYv3hRgjsW631ZknA7HWfHFnGWhnHtbMBwglR0RxarjctZj2Ju7t-Is24qt7rlr_9KRom_jL-imSB3CoH12VllMatEduTNPr-WaliXjVFCTr2hLrDdnI7U9gSChOYk44iH5HPcMasQFEbJpA5d8X4ma7QhqQwJ-k1oAvKgt-r8UJnj7wMTozxct6V1nej5dwOOvZM9M3nJLFfdaEs2WxIdlZoYOiO61dHdAZqv6q_0wjp-zmUqnfD9nFwGnl4mN42-LQ8m0x9Vdj3RDtx91CV8pDSuBqwOjB7OlUekVA41ajWsVRFhpa7OL5q4bD0CrMTlm8k103ppWCaKRYT5wEwEv_5Ymj_GkAxvwPNPDafTUvvYPIgbLJisfNhImu0OTCADF_xBeiAEUplF7HMCM08w4QjQSe4Ip4p4YoHxi18FXOxgAPblrMWRJ0B3mV_UyUufR1IAYb3LUDfBbsq_Pgo_ge1s-HHGg=","id":"rs_68d3bdbd8784819081aaf1adc33fe487","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"Flor"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"ence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" around"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" That"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" very"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"—"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"stay"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" limit"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" time"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" direct"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" sun"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" Want"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" me"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecast"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" or"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" humidity"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"/w"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"ind"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" details"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"?"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":92,"completion_tokens":299,"total_tokens":391,"cost":0.003105,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000115,"upstream_inference_completions_cost":0.00299},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 881.220375ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_openai.yaml new file mode 100644 index 0000000000000000000000000000000000000000..86fa0d3080b664160dd8849410a5d7ae6c7e9f59 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_openai.yaml @@ -0,0 +1,707 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 575 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" info","reasoning_details":[{"type":"reasoning.summary","summary":" info","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" retrieve","reasoning_details":[{"type":"reasoning.summary","summary":" retrieve","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided","reasoning_details":[{"type":"reasoning.summary","summary":" provided","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" There's","reasoning_details":[{"type":"reasoning.summary","summary":" There's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" requires","reasoning_details":[{"type":"reasoning.summary","summary":" requires","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" JSON","reasoning_details":[{"type":"reasoning.summary","summary":" JSON","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" object","reasoning_details":[{"type":"reasoning.summary","summary":" object","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" string","reasoning_details":[{"type":"reasoning.summary","summary":" string","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" However","reasoning_details":[{"type":"reasoning.summary","summary":" However","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" we","reasoning_details":[{"type":"reasoning.summary","summary":" we","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".","reasoning_details":[{"type":"reasoning.summary","summary":"\".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" commentary","reasoning_details":[{"type":"reasoning.summary","summary":" commentary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" once","reasoning_details":[{"type":"reasoning.summary","summary":" once","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" share","reasoning_details":[{"type":"reasoning.summary","summary":" share","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" current","reasoning_details":[{"type":"reasoning.summary","summary":" current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" data","reasoning_details":[{"type":"reasoning.summary","summary":" data","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let","reasoning_details":[{"type":"reasoning.summary","summary":" Let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo072AR80EltHjvY8WJdP4dm0Ozqv60BjdekxsNIbG-fua3M9vJ1vTX8l7LL7yxJ8ATRlwB7WY76ZCpJKArGAmqal5ZiCNCPZqn_fp92S-9adVOhrA6Tv0gg-Fw9SMdn1OHq0XdoyHDmi9ID19fZtj_6M7bkqXaYWdUL_DmnSL_0nWApLH5K8lhy0mEDcrrVzuNgzJXBVLlCcvzLIzbQSGQ434UQ9XU_KpR17GrvQg22bNreqQgdZ8OwqGvmUdg_1wlZMnIuEIcex9ZivvRkOSTd02nExSQXOLS0qJfKHbnJTQa1uYktBXEXybNpOl3gk7QNbfTaKW_SOjDgAFmbwVg_0whnJDeUDalo9AvU3aFeHB0OzgnL9zpS1MgWJv_OinVTarLFdPGTPhwkNzTLW7gn732W7QcCAyTE0cJiM-bxq32Hsi6c9dis3aP7-lN89wll_XZV6QiyV4WvVh1hPxKbVlU95MyUA9sA4JieLhTFpKB2K0YXjuF-yQmXEK4heD4Mq4kVNUgS19zIObZsAEW2es96anDsGXcUwzdCynGc7hrR1AOoSZmEx0yF59OuP8-Izrzq6wea9Njo4cnSjm71ZbfKt5dor8oVCXRghiCi-A-VlYlfJB8CdqdaBpdZJKL_PeUx__Gc3zZUaAMy_lloAZJACjtdb3k-knzDU_sLXwnTApvyQaLzoMZdoSAyOhiZVTKR8MoRb8L36lLcXQ805Ur4G0N0bQwSa6sTRvzhPyCAXLuSMLlUm9dhKjSz48R68OPyA38higjBaTB-0jZJh7waVuDFhiMGI6z1VCxyP5-fwtH_NpJjANy3WvbS0beCONU3vT5VSXq8QhdY62UM9KC9n0pWqwzZyEpd78e7gpd80GQ1oZfdxVvu9TRdCL37yAxqf6p3TR1V5xefpK6pR0O6pCRENww9K0iDPN882fhJNEQjtGT0kuPS-QzEtU8hGV2WbgRSRWqAbIa0sOBe0DP7ja9yziH-_H229AbYALj2LZ8QrxWoEyewEYnpdo7uBrfkvmXTBrhr-28Ep5Bnrs7pR76slfB4M9dhbfrCXWYTYaU41_LWs34O6GB65SktpkApQRqWu-n2DRwYKzAlQEY-vDGhQxpocINUGyJy_Yx-_-g1tozbYCuvQanyyqDJPaCdJgbKtiMhADFvMeKe0nZkXBGvFXjtIas3B3GBg5YPa6vMsIIldbCDPFVWxEaxDklVChaGKhTwu-mPYm6vUKeEBh9ZRhqArNg6Ou37Xu6oGu24rQ4odi8EMLO2E6OR0A_Q-JptrNom95LBnMwqgQ76xQFtP5Ylnh3_Dj4BMr1sHuftiBk6r8bqkcexY2YTqAh-uAzIc32lGJS4l6MmMYtUzeuXXxDaMeLtYHp23XbGEp425vyxh06xwcOJseP9ClJvPcO4gVSrE17tytfLMhURmlDdBY1TWTEfJmwA1VfDIPScXuuMwwQnPiTaMCb3zvGZCX4DnG4vhql8MYF8MZQPDGENTl0ij8Bb66P8U_neJUwHbm-ty0unuV7Gf9ZxarvMV0W6mvm2ZicFkAhbcurA==","id":"rs_68d3bd7d52b48197b166576cc0dd27a1031a71dc440f74de","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_ODOIzLCpfOOLsZ6Azqnte7mT","index":1,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"Flor"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"ence"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":" Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":63,"completion_tokens":86,"total_tokens":149,"cost":0.000469375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000039375,"upstream_inference_completions_cost":0.00043},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 850.374375ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 827 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_ODOIzLCpfOOLsZ6Azqnte7mT","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_ODOIzLCpfOOLsZ6Azqnte7mT","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://openrouter.ai/api/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Present","reasoning_details":[{"type":"reasoning.summary","summary":"**Present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ing","reasoning_details":[{"type":"reasoning.summary","summary":"ing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI've","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI've","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" got","reasoning_details":[{"type":"reasoning.summary","summary":" got","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" —","reasoning_details":[{"type":"reasoning.summary","summary":" —","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it's","reasoning_details":[{"type":"reasoning.summary","summary":" it's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" That","reasoning_details":[{"type":"reasoning.summary","summary":" That","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" feels","reasoning_details":[{"type":"reasoning.summary","summary":" feels","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" pretty","reasoning_details":[{"type":"reasoning.summary","summary":" pretty","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" high","reasoning_details":[{"type":"reasoning.summary","summary":" high","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clarity","reasoning_details":[{"type":"reasoning.summary","summary":" clarity","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" maybe","reasoning_details":[{"type":"reasoning.summary","summary":" maybe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" convert","reasoning_details":[{"type":"reasoning.summary","summary":" convert","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Fahrenheit","reasoning_details":[{"type":"reasoning.summary","summary":" Fahrenheit","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 104","reasoning_details":[{"type":"reasoning.summary","summary":" 104","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°F","reasoning_details":[{"type":"reasoning.summary","summary":"°F","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.summary","summary":" It","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" might","reasoning_details":[{"type":"reasoning.summary","summary":" might","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" smart","reasoning_details":[{"type":"reasoning.summary","summary":" smart","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ask","reasoning_details":[{"type":"reasoning.summary","summary":" ask","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.summary","summary":" if","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.summary","summary":" have","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" careful","reasoning_details":[{"type":"reasoning.summary","summary":" careful","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" invent","reasoning_details":[{"type":"reasoning.summary","summary":" invent","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" details","reasoning_details":[{"type":"reasoning.summary","summary":" details","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.summary","summary":" like","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" humidity","reasoning_details":[{"type":"reasoning.summary","summary":" humidity","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" conditions","reasoning_details":[{"type":"reasoning.summary","summary":" conditions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" unless","reasoning_details":[{"type":"reasoning.summary","summary":" unless","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" received","reasoning_details":[{"type":"reasoning.summary","summary":" received","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" from","reasoning_details":[{"type":"reasoning.summary","summary":" from","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" keep","reasoning_details":[{"type":"reasoning.summary","summary":" keep","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" my","reasoning_details":[{"type":"reasoning.summary","summary":" my","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.summary","summary":" answer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" concise","reasoning_details":[{"type":"reasoning.summary","summary":" concise","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" useful","reasoning_details":[{"type":"reasoning.summary","summary":" useful","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" suggest","reasoning_details":[{"type":"reasoning.summary","summary":" suggest","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" staying","reasoning_details":[{"type":"reasoning.summary","summary":" staying","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hydrated","reasoning_details":[{"type":"reasoning.summary","summary":" hydrated","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" heat","reasoning_details":[{"type":"reasoning.summary","summary":" heat","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Providing","reasoning_details":[{"type":"reasoning.summary","summary":"**Providing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" current","reasoning_details":[{"type":"reasoning.summary","summary":" current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" keep","reasoning_details":[{"type":"reasoning.summary","summary":" keep","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" straightforward","reasoning_details":[{"type":"reasoning.summary","summary":" straightforward","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" minimal","reasoning_details":[{"type":"reasoning.summary","summary":" minimal","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" current","reasoning_details":[{"type":"reasoning.summary","summary":" current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" about","reasoning_details":[{"type":"reasoning.summary","summary":" about","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.summary","summary":" (","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"104","reasoning_details":[{"type":"reasoning.summary","summary":"104","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°F","reasoning_details":[{"type":"reasoning.summary","summary":"°F","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":").","reasoning_details":[{"type":"reasoning.summary","summary":").","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.summary","summary":" also","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" check","reasoning_details":[{"type":"reasoning.summary","summary":" check","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.summary","summary":" if","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.summary","summary":" wants","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" quite","reasoning_details":[{"type":"reasoning.summary","summary":" quite","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hot","reasoning_details":[{"type":"reasoning.summary","summary":" hot","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" right","reasoning_details":[{"type":"reasoning.summary","summary":" right","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" now","reasoning_details":[{"type":"reasoning.summary","summary":" now","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mention","reasoning_details":[{"type":"reasoning.summary","summary":" mention","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" while","reasoning_details":[{"type":"reasoning.summary","summary":" while","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ask","reasoning_details":[{"type":"reasoning.summary","summary":" ask","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.summary","summary":" if","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" an","reasoning_details":[{"type":"reasoning.summary","summary":" an","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hourly","reasoning_details":[{"type":"reasoning.summary","summary":" hourly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weekly","reasoning_details":[{"type":"reasoning.summary","summary":" weekly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" don't","reasoning_details":[{"type":"reasoning.summary","summary":" don't","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.summary","summary":" have","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" let","reasoning_details":[{"type":"reasoning.summary","summary":" let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" focus","reasoning_details":[{"type":"reasoning.summary","summary":" focus","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" on","reasoning_details":[{"type":"reasoning.summary","summary":" on","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" delivering","reasoning_details":[{"type":"reasoning.summary","summary":" delivering","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" confirming","reasoning_details":[{"type":"reasoning.summary","summary":" confirming","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" their","reasoning_details":[{"type":"reasoning.summary","summary":" their","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" needs","reasoning_details":[{"type":"reasoning.summary","summary":" needs","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo072J_sLToFepArMrSY0UgzZcLbhQwyM24KxlFg0ZWSdGgjit1_wGcNCmq9g4sIBuhJtytGmGgX07hh3Y1hjddS5doZWU5H3-7HOs8sdhJ-9sGsAZ3fzkZ5bdv2a6Ast4Rquqb2sW1T-CAj-clNmogJlrU0Z55fejRl7L7EkCV8nn4T8FSVU7e7x2XTsEqLTK3q4iSgjk98S1lidFhw_RnR3jWRGwHgl3ihHLxn7N85myyBDUmUg_p0rfgQUz5CArygpGuEXD7VKyJNsu2T64qsDlaHXwKiNUjLL8_ZpnOrMmpWAABKVWSXL9BhiHnNEkFHXXbRTAkfDCSOPLWj5QuDK4yi_CiHebmOT-wYd5QnYQEuCQTpsuUVA_V3NAxZSP20MUO_aaeE7sG4IVr3V0F6b5lo4_QKv-7Wbs1RFgXtvLEcJX-_dxjaJDxeanqAMMcPKHup_u6LSIz8wN-dUKTjXa3Skzq8xBycw1UrubpHmlW4PE-OplZvj8V4cjdlOVhI4k_XFxitKX0sTx34lPBMsmcQJEthTuBT50Mm0d3trGY75Xwb5FJ9KynBQB-Mz6_tISMtkMhB4296YXXy-zRnsV3xZrnzlTokxQAidYr1C6SBjGM73rTp6GfqWvy2I2kdUN4WGNhCWTmqSFV09PG8fvpHnk_mJnW2T2n-7Xr9lnpFzBMecXQvkMxh3WrxMF1Y22H7fHg4Upm1UxuXrD6h3fTZb7qreBQq7ztEF5KEcEeuyzjIkOZHycdbVOrs2FVUQiQLJ8ocpeYwYF6Hs-1sLncmJd2jIi0xjkiEIDOfXMCkLpTpUECK6TDcU3joLlCS7540SdgMskSbHd5Z3yyqltOo1iEIDWJ6GoNSEmE7fb360YDcfPXFVeYotlNCRUADARTWhvUzFrABgmzzpVDGzo38ylDZuI_2X9AV_X6uinJnyAhcwAXrHn0Blt8X3CPWkwniNuzLIvVmhZKGwjRUVzhSzrcerNNT23yr3ZN1u0-87Y-A1lLDc8B4xrK48X2_lzuApY-IhM4KrxHUY-a4TcLU1lvAQ-8kS7YSdRtH0HZtUfPfEClAAp7iacnCLCORXKQxur7T0rzH_h4PhUiwj4lE-wqEgAGhcNd3EVZJZoZ5o4SGMSbYOm3X0FW1brGOJ-g6YIk-ZF_yJZ8YpSwkJDwm08rHI8Rgn4UwLxsMJqhF7jEqOEImil766OAtuRUgh7Pm8VqyJZzpFveMD0lYuMhgv_f36SpypHZntR4YX6SREC-OzGAQVOsv9NCvId6Ti-Kp5zHstqgDDNuQJxPOSA_vpgFwCSDJG2JdjWEL2GnZi_NXZ9EG5k6CkwutqPC-NPZ3885UFGrhHnAY0zD6kE33Bp9hhuAi5N0ekBrc4qAzfawMOg7LZUJxTgTtk7Pqn6kGHKdkAxwpsqnxeDTCsKShY-r-85aO3-5Q7frNEIDhkUnKwZbUZs-KuFrxXEwDlppTm4vp9L5M6LPae2Im-3T1XsAqRl6HcPpY4Xr6nSekidDkTN0NgYP8hfzzULNF6NvAeH3InLXcbNlWU8pQbA1T5aRgS3xAVU0gVPY-OYMDJL75-6FHM4ibB6m0xMLrwnfkqgxWr0ycpmJmSVuFlh5oNgrl4ZZK3cfVXgqZyRVby2-coKrp3g5YeX2jsHB7tw1HO6E4hr0WKwFSqArALnfXNf-fNV06Ua7lmAXAFBf4PMxldLrmn1WlGi4-PVcY24QryPe_q6Q6VvLPEJAuPb7FJdtOHoqCu1DB6HOJ_TNYlJ_bTUJv95rbdpWiVrKG2Z2ScAcde0QVA6YIMlEuPf63sE9J_04AKpmumlTNNh2yzDphYkb8-ZOh0UBJKrEKr5_A4mlfLukB9yFUEtuHMspLEUd_KTjAbloolKb6c5DuvPwg_yaSHDHSYUvEJYzy_1-KZ_Y8MgUja5vMbcDecBZCnPEeetZaq5sbZTGqDPcM5klEphEqO0ptzaZbT3KCpXX5vVzJ4xedF9X24l07rAPrTO0ToT8djg3k0ROoxQMJKBg-T3a8t5b7MyLUOWd56gC5_pk4jNMG4yOJAvOucgjLxe06JbccixAngUHYV5CTaAd5x1CskFdmCpzeuRnsbyO5fEgQUl928H_hoRBm6wShq8iZAPhWqbOrrwCk2BoL08zDtgJTF8p-5NRjUoFlcVZwjwqwr9ta0Y_WWa-Ez4Qfar1brEGVgfLI2gxNiE0BV0Uc4O0IvAaTfz8UHxYzzR4vTdzmEPugP119SVtvpVzXGNaWZ5cMsbmhDoYp3dir5WqVbc4B7B8w7tz0brBdnmwtDezonzxR3hbpLq1ZOHzGtuMyt_9GX_NtXhuPEHDRUAuu28fZZRYPF2S-7nseCyjKf_f_sOv_h40m7945yLyAstgswFMKkiCwUE2J3d_bFehURTvF-JdhYUrOiVNP8UpvGixWjUfZ2YqZEpalnInR3DgiLPn1QaBjmu1Xwwe9vUnQP2mtqdiNVRjqZJ9805pR1JimG_zW-lXk0ACEswx1Ci5jBDXB69h3oePZ9hveu-69MyXX22jM2YnSxKlmVdKf7QTiCAZ3KNmnubJvq-lqmFRpKraBPQH_CyzPRcuAZONxqZnUi-BMmKudBTZ8nTO6SK7AKHbJTKpIg3uOrZJIkXNVT7sR3yOxQZsDDMA8Iu1vaNzsX9vHqOmhj2D0_iHf9RrpABHF1CmDmf6soxUJSaHXD7Mwg9DGUxgFJ1bdiE6zVjfq_JY9mXZ7sCSTjV","id":"rs_68d3bd81f4f8819095528478b0070de4","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" about"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" Stay"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" cool"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"—"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"would"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" like"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" a"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecast"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" or"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" tips"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" dealing"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" with"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" heat"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"?"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":92,"completion_tokens":296,"total_tokens":388,"cost":0.0015375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000575,"upstream_inference_completions_cost":0.00148},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 663.669125ms