diff --git a/providertests/openrouter_test.go b/providertests/openrouter_test.go index d9677515ea057c69422cd026460731cbe8443b74..0ccaa44257d50444e5fc232268734862ed944d32 100644 --- a/providertests/openrouter_test.go +++ b/providertests/openrouter_test.go @@ -19,17 +19,25 @@ type openrouterModel struct { func TestOpenRouterCommon(t *testing.T) { var pairs []builderPair models := []openrouterModel{ - kimiK2(), - grokCodeFast1(), - claudeSonnet4(), - grok4FastFree(), - gemini25Flash(), - gemini20Flash(), - deepseekV31Free(), - gpt5(), + openrouterKimiK2(), + openrouterGrokCodeFast1(), + openrouterClaudeSonnet4(), + openrouterGrok4FastFree(), + openrouterGemini25Flash(), + openrouterGemini20Flash(), + openrouterDeepseekV31Free(), + openrouterGpt5(), } for _, model := range models { + // add one entry for multi provider tests + pairs = append( + pairs, + builderPair{ + model.name, + model.builderFunc, + nil, + }) for _, provider := range model.providers { pairs = append( pairs, @@ -50,7 +58,7 @@ func TestOpenRouterCommon(t *testing.T) { testCommon(t, pairs) } -func kimiK2() openrouterModel { +func openrouterKimiK2() openrouterModel { return openrouterModel{ name: "kimi-k2", builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { @@ -75,7 +83,7 @@ func kimiK2() openrouterModel { } } -func grokCodeFast1() openrouterModel { +func openrouterGrokCodeFast1() openrouterModel { return openrouterModel{ name: "grok-code-fast-1", builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { @@ -91,7 +99,7 @@ func grokCodeFast1() openrouterModel { } } -func grok4FastFree() openrouterModel { +func openrouterGrok4FastFree() openrouterModel { return openrouterModel{ name: "grok-4-fast-free", builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { @@ -107,7 +115,7 @@ func grok4FastFree() openrouterModel { } } -func gemini25Flash() openrouterModel { +func openrouterGemini25Flash() openrouterModel { return openrouterModel{ name: "gemini-2.5-flash", builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { @@ -125,7 +133,7 @@ func gemini25Flash() openrouterModel { } } -func gemini20Flash() openrouterModel { +func openrouterGemini20Flash() openrouterModel { return openrouterModel{ name: "gemini-2.0-flash", builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { @@ -142,7 +150,7 @@ func gemini20Flash() openrouterModel { } } -func deepseekV31Free() openrouterModel { +func openrouterDeepseekV31Free() openrouterModel { return openrouterModel{ name: "deepseek-chat-v3.1-free", builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { @@ -158,7 +166,7 @@ func deepseekV31Free() openrouterModel { } } -func claudeSonnet4() openrouterModel { +func openrouterClaudeSonnet4() openrouterModel { return openrouterModel{ name: "claude-sonnet-4", builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { @@ -178,7 +186,7 @@ func claudeSonnet4() openrouterModel { } } -func gpt5() openrouterModel { +func openrouterGpt5() openrouterModel { return openrouterModel{ name: "gpt-5", builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) { diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..88560a52598bdc01e51d325689a05e48b11a9388 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 838 + 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":"anthropic/claude-sonnet-4","max_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}}' + 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{\"id\":\"gen-1758707407-cWuMRg0N5KydC2xCo0On\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758707407,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll add and multiply the numbers 2 and 3 for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"toolu_vrtx_01QcrEb23SRLLCiSd5nUSb1U\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"toolu_vrtx_01YSw7kWrFcUaLzBDPwnCHgX\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"usage\":{\"prompt_tokens\":502,\"completion_tokens\":137,\"total_tokens\":639,\"cost\":0.003561,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.001506,\"upstream_inference_completions_cost\":0.002055},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 2.659699083s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1356 + 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"},{"content":"I''ll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"toolu_vrtx_01QcrEb23SRLLCiSd5nUSb1U","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_01YSw7kWrFcUaLzBDPwnCHgX","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_01QcrEb23SRLLCiSd5nUSb1U","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_01YSw7kWrFcUaLzBDPwnCHgX","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_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}}' + 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{\"id\":\"gen-1758707411-0liezH04xnRE6G2qkEDN\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758707411,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The results are:\\n- 2 + 3 = 5\\n- 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":700,\"completion_tokens\":31,\"total_tokens\":731,\"cost\":0.002565,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0021,\"upstream_inference_completions_cost\":0.000465},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 2.559913666s diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_deepseek-chat-v3.1-free.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_deepseek-chat-v3.1-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f0775a4be4af77c7116c3317d9f18bfc911054b9 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_deepseek-chat-v3.1-free.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 845 + 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":"deepseek/deepseek-chat-v3.1:free","max_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}}' + 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-1758707813-oE0dxADW8tkpjPanACFt\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758707813,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll add and multiply the numbers 2 and 3 for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_93bf\",\"function\":{\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\",\"name\":\"add\"},\"type\":\"function\"},{\"index\":1,\"id\":\"call_4961\",\"function\":{\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\",\"name\":\"multiply\"},\"type\":\"function\"}]}}],\"usage\":{\"prompt_tokens\":250,\"completion_tokens\":51,\"total_tokens\":301,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.496415959s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1259 + 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"},{"content":"I''ll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"call_93bf","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_4961","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_93bf","role":"tool"},{"content":"6","tool_call_id":"call_4961","role":"tool"}],"model":"deepseek/deepseek-chat-v3.1:free","max_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}}' + 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{\"id\":\"gen-1758707819-5ZrWmU0G59C6ywlnu7NA\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758707820,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The addition of 2 and 3 gives us **5**, and the multiplication of 2 and 3 gives us **6**.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":309,\"completion_tokens\":28,\"total_tokens\":337,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.121664417s diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b06f84ed21e80b5088a1b87a7fc36bd8243fdf20 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 840 + 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":"google/gemini-2.0-flash-001","max_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}}' + 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{\"id\":\"gen-1758707457-NeBLOGMoKvQya0Uz8OQa\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758707457,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"tool_0_add_eUIMVolsSVKfRSkfWYNW\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"b\\\":3,\\\"a\\\":2}\"}},{\"index\":1,\"id\":\"tool_1_multiply_pK9FAKP3IMj0EtfsvpzG\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}]}}],\"usage\":{\"prompt_tokens\":57,\"completion_tokens\":10,\"total_tokens\":67,\"cost\":0.0000097,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000057,\"upstream_inference_completions_cost\":0.000004},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 853.978125ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1283 + 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":"tool_0_add_eUIMVolsSVKfRSkfWYNW","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"tool_1_multiply_pK9FAKP3IMj0EtfsvpzG","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_eUIMVolsSVKfRSkfWYNW","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_pK9FAKP3IMj0EtfsvpzG","role":"tool"}],"model":"google/gemini-2.0-flash-001","max_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}}' + 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{\"id\":\"gen-1758707457-Gk4GfdueaiZwOqFqeFkw\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758707458,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The sum of 2 and 3 is 5, and the product of 2 and 3 is 6.\\n\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":109,\"completion_tokens\":26,\"total_tokens\":135,\"cost\":0.0000213,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000109,\"upstream_inference_completions_cost\":0.0000104},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 643.811833ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..01a89ba6d7b38afb7d6c9f0c558b11830406142c --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 836 + 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":"google/gemini-2.5-flash","max_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}}' + 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{\"id\":\"gen-1758707447-kpg2hhGqhv9cwOUEZZ5J\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758707447,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"tool_0_add_1jH2KDvmATP9XyLTmsrv\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"b\\\":3,\\\"a\\\":2}\"}},{\"index\":1,\"id\":\"tool_1_multiply_RA3mlHubovCtWTnVe96c\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}]}}],\"usage\":{\"prompt_tokens\":57,\"completion_tokens\":10,\"total_tokens\":67,\"cost\":0.0000421,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000171,\"upstream_inference_completions_cost\":0.000025},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 930.34375ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1279 + 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":"tool_0_add_1jH2KDvmATP9XyLTmsrv","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"tool_1_multiply_RA3mlHubovCtWTnVe96c","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_1jH2KDvmATP9XyLTmsrv","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_RA3mlHubovCtWTnVe96c","role":"tool"}],"model":"google/gemini-2.5-flash","max_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}}' + 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{\"id\":\"gen-1758707448-1p9HXEqY5xJvx9Mu9iYV\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758707448,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I have added 2 and 3 to get 5, and multiplied 2 and 3 to get 6.\\n\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":107,\"completion_tokens\":26,\"total_tokens\":133,\"cost\":0.0000971,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000321,\"upstream_inference_completions_cost\":0.000065},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.021976416s diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fa76242634ba282759399f6aa869c66c99b97e92 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 836 + 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}}' + 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-1758707649-pUgI61RYe8vRCgvNvwBU\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707650,\"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_6Lvs1oTBCNDDAD2bZNXUnEmk\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"id\":\"call_5SAOr1sNSod2TRSKp5qimGvO\",\"index\":2,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo07_Gg8F7qOMyxoklF8O3r_cgy32SNgEPO9OJpcmhtgSZHhakz1Q4eF8kZajtaORzh3udy27sLKvYE-Z5xmR4C4Y8EZtFrn4r9wsJ2COjYOwfc97mZDaR_lkU9oOdLQ5mGzKd8NAnQ8RAv24GjB5Ug0VZH8EJhbH-uJBylQ4Dl4xKNhQYi5VNKz6_pn_uVe2-b7-rCretw3h7Uzjc1UuSFuos94MBHzLwmJ6QyKSTn45PUT17SeApSTxaD2NSsMkr2843-8wwMn_BfY9_BRIJ_gkfbZMyJWiJ9Hdhpn9mYQLPdFG-JpI8vMkavbEBYD4ng4y7N5jOGsezN89heEcZS9W2J6HBVzCRekaLaRCQ_o_LgGzVPmrRX3q40hoDbQLrV8Q4l3zGher0L9TRTMIx3Tnmi7b0Z7xAihxICONlKB-t3j-_L2EePDDBWPeX5BUApc0z_lnRd_NM6jiivakTULPTbYA59NGzoTGS88a2WuKYSQ5hZtCnmZChQjM9Ph-2_-JeLaMgm5GYNkWO3eRR8moH3AntKwOE5sZ3L6haCEZk90Oyocknih1W0cYq3eVDbe3Yue_K2b5IZ-z1TRAQDnmGlPu8gwQsYjWykZijBhWehshIF9qbK704rr3_xF3uWhIhqCJ9s0JQoSV7nIpWPcEsW4Nr8iFegI5Yts2Mggy-LK4phIBR1Qj68r3eRn2FUoZRIl7zuUh23IAZfp7UXJBkYt2d-L7HdBgYeF-z6PBd0NQItPYW6xMkks3_g9m2zty-cA98LnopM6uuBzVZ-Egw9v4c_zfIMjHKMLKedC7PsMkw-KxQ9UzdHUG3VStVN6LNE2RCaZGDirY5ETvDPkogNlDfr5qft4Uf7etUfDrZCJ-puJiow2ftpicJykE7L_7HZSwTd7oIPA_3nQqXE1CzPR4oqEZqgm3Ei_aHIWUaXsjDWq4mBciflYIGwlNan825I9fzzEPQwbSccpKpK0C1P9QY0nCNYKYnJuI08YenilWY4nwPJv8Abqzif50q5T0G_Nqx0quHH0_kkzcJ2dtoEWVrc8WbHJJOhQlclDW5k8n6EhPUeCclua4q6Iv0nVvdoxE_0EEdEbBsykZW-WmqrJ9OAuSEf_w3tdmYWPDH4fbWBvmNbWiu4GNtlc8OraLjXU3hMNshkT0jJ83F9QTIAXIFfnl4y_0Gny2rLkb1OFp_Io27UUeYIVvWML8r7F_JMG4eDmUwpHgd7zfyod_kLYZRVA0i4FE9IKjxw6Ch9Jg2X4-aWCMTInepDto7vBv1rBqilesMBqlXB8EAqGrzz9Mk4ocFM8VSuxZQc4Q4dh4ajykq5z8O8kpCNdz2G5TEqioJUtRjEDsI7l23G7L4JhO1iAwfQYPcWn7xDuWKzYWUtLrT7At4duoe9ayIy4G6tYhZv5Yk941Tm3gzV990IZBi-nQDW67_89okmE1uDktgkEf4YT5p2gIeKvUswvhU4rvllnAChjA-utBCNffZbw7H8A4ZfH-D8FERGlx0J6mI8fvr1uuCzJlajgzv7B4PRauCe2R7jZCRBexy8EtM5X-S2prwMyGe07fgIDig1zEdoiWbkMsD4UkPxnKLWUH_zBd-Q0xMmSvFtesvuWyaHdTyxi8UXnYCP0D8c9MV14j2n582-FUR3flUaaLkZNw7ktVZ1p6E_-Xie-lSVmk8-RZtQZSMyfvmPK8bsDR0A-NmI4kyWSRQOyrI4-7IKjvbY7caYEPW44v3XVjXhXoK6HHrtjwelVP4F2zzY828wC_AWyMq6J1Us-WmsLh600urL9pWycrEV_dt0AAZTFEwlJ06wKDiqOXao18dz4AhhEQBiXtweTWdtlrM7r27RFFa0TXQrzNEREW4tLnt89DIQbARCdeibyjBJiOzwD00OWEiy6jRQjCJ-IgDpkJ8BEWJYWaZeXnC_jGsSuRQipTq9JWgSAYdMHcCb1Kcy52Furh0FNpK3dDKcXTIW8ikZEpqok32Ghreb1ryDRNYnIIoUOxctKdkl9_MGvr2hJE6qwLEEdP5nAqQDew6j2pM2AQAPJmFjkYEvqefEYPrWlPDOxd1mz_xq_dMEGFUyXBM7VgIKO4pc2atNLHQcY6-wcncA16Iq6MUKsbmLSl0UswVcg1ghPHXLGyEwXQq4G1YzM-AIPTtMg0_3vXfYT5VlO9pRMS2hiABNaktHnqQ8ip9NMG5AIzcNf0AJEVVwTg2Iy9gJI1NN5u5vZaRAR-I-aKcFosJUUVyC0Jgc0i8OZH5YQ==\",\"id\":\"rs_68d3bfc2b94c8193a50bfa4e90405ef00c68e5a43a8150bc\",\"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: 835.204209ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1261 + 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_6Lvs1oTBCNDDAD2bZNXUnEmk","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_5SAOr1sNSod2TRSKp5qimGvO","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_6Lvs1oTBCNDDAD2bZNXUnEmk","role":"tool"},{"content":"6","tool_call_id":"call_5SAOr1sNSod2TRSKp5qimGvO","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"}],"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{\"id\":\"gen-1758707655-VTPf9Unuu9NRoR2JSEfp\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707655,\"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: 1.081003666s diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c8168a081454a88bb063e77572ed8aa77a295aa1 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 834 + 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":"x-ai/grok-4-fast:free","max_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}}' + 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-1758707436-9SwfMJ0mXyN49fIZq0bB\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758707436,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"call_40022721\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":0,\"type\":\"function\"},{\"id\":\"call_09156335\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":1,\"type\":\"function\"}]}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":394,\"completion_tokens\":177,\"total_tokens\":571,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":265,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":109,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 409.521584ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1195 + 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_40022721","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_09156335","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_40022721","role":"tool"},{"content":"6","tool_call_id":"call_09156335","role":"tool"}],"model":"x-ai/grok-4-fast:free","max_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}}' + 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{\"id\":\"gen-1758707438-gUYzMhnXbsRbPfbPD4B0\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758707438,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The sum of 2 and 3 is 5. \\nThe product of 2 and 3 is 6.\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":585,\"completion_tokens\":80,\"total_tokens\":665,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":537,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":55,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 324.281125ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2c518b6e18eba983d50ec62bce31bdca13f9c743 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 834 + 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":"x-ai/grok-code-fast-1","max_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}}' + 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{\"id\":\"gen-1758707378-pn9PW3A62fyBGfaQH7G4\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758707378,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"First, the user asked to \\\"Add and multiply the number 2 and 3\\\". According to my system prompt, I must always use both add and multiply at the same time.\\n\\n\\n## Handling User Request \\n- The user asked to add and multiply the numbers 2 and 3 simultaneously. \\n- The task requires using both addition and multiplication operations together.\",\"tool_calls\":[{\"id\":\"call_76118981\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":0,\"type\":\"function\"},{\"id\":\"call_17779443\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":1,\"type\":\"function\"}],\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"First, the user asked to \\\"Add and multiply the number 2 and 3\\\". According to my system prompt, I must always use both add and multiply at the same time.\\n\\n\\n## Handling User Request \\n- The user asked to add and multiply the numbers 2 and 3 simultaneously. \\n- The task requires using both addition and multiplication operations together.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":467,\"completion_tokens\":427,\"total_tokens\":894,\"cost\":0.0006763,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":320,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000358,\"upstream_inference_completions_cost\":0.0006405},\"completion_tokens_details\":{\"reasoning_tokens\":359,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 676.507291ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1195 + 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_76118981","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_17779443","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_76118981","role":"tool"},{"content":"6","tool_call_id":"call_17779443","role":"tool"}],"model":"x-ai/grok-code-fast-1","max_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}}' + 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-1758707381-ShjueDw3WxX7Z5hChCAD\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758707381,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The sum of 2 and 3 is 5. \\nThe product of 2 and 3 is 6.\",\"refusal\":null,\"reasoning\":\"The user asked to add and multiply 2 and 3.\\n\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The user asked to add and multiply 2 and 3.\\n\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":908,\"completion_tokens\":79,\"total_tokens\":987,\"cost\":0.00015034,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":832,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00003184,\"upstream_inference_completions_cost\":0.0001185},\"completion_tokens_details\":{\"reasoning_tokens\":54,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.10407175s diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a2961a0f3cbdfe43decd85a3d2b0c343a8294748 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2.yaml @@ -0,0 +1,92 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 836 + 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":"moonshotai/kimi-k2-0905","max_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}}' + 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: '{"error":{"message":"Provider returned error","code":429,"metadata":{"raw":"moonshotai/kimi-k2-0905 is temporarily rate-limited upstream. Please retry shortly, or add your own key to accumulate your rate limits: https://openrouter.ai/settings/integrations","provider_name":"WandB"}},"user_id":"user_2zMGmKqlf4zmAvL9snVImB1Z1ZQ"}' + headers: + Content-Type: + - application/json + status: 429 Too Many Requests + code: 429 + duration: 1.817364708s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 836 + 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":"moonshotai/kimi-k2-0905","max_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}}' + 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-1758707349-srJlHTjaccpe482CB4Bt\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758707349,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll perform both addition and multiplication on the numbers 2 and 3.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"0\",\"function\":{\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\",\"name\":\"add\"},\"type\":\"function\"},{\"index\":1,\"id\":\"1\",\"function\":{\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\",\"name\":\"multiply\"},\"type\":\"function\"}]}}],\"usage\":{\"prompt_tokens\":171,\"completion_tokens\":29,\"total_tokens\":200,\"cost\":0.0001435,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000855,\"upstream_inference_completions_cost\":0.000058},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.060787792s + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1237 + 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"},{"content":"I''ll perform both addition and multiplication on the numbers 2 and 3.","tool_calls":[{"id":"0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"0","role":"tool"},{"content":"6","tool_call_id":"1","role":"tool"}],"model":"moonshotai/kimi-k2-0905","max_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}}' + 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-1758707351-06C0F4sLDEqerAbCNN9S\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758707351,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The results are:\\n- Addition: 2 + 3 = 5\\n- Multiplication: 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":275,\"completion_tokens\":28,\"total_tokens\":303,\"cost\":0.0001935,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001375,\"upstream_inference_completions_cost\":0.000056},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 823.611583ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f6c740f021283cf377e970d4a961923fdabfee70 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4.yaml @@ -0,0 +1,121 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 892 + 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":"anthropic/claude-sonnet-4","max_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},"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-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll add an","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":"d multiply the numbers 2 and 3 for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01CW4yxw7KqTQ2pX5sAjyujC","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\"a\": 2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":", \"b\": 3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01By7GJryNkth5zyuYAW5dAS","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"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-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"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-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"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-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":", \"b\": 3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]} + + data: {"id":"gen-1758707414-pJ8VdZZUMayWZKn0kxje","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707414,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":502,"completion_tokens":137,"total_tokens":639,"cost":0.003561,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.001506,"upstream_inference_completions_cost":0.002055},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 3.11887975s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1410 + 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"},{"content":"I''ll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"toolu_vrtx_01CW4yxw7KqTQ2pX5sAjyujC","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_01By7GJryNkth5zyuYAW5dAS","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_01CW4yxw7KqTQ2pX5sAjyujC","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_01By7GJryNkth5zyuYAW5dAS","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_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},"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-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":" results are:\n- 2 + 3 = ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":"5\n- 2 × ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":"3 = 6","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758707419-ArUPeyUREOtGAa0nRJnW","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707420,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":700,"completion_tokens":31,"total_tokens":731,"cost":0.002565,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0021,"upstream_inference_completions_cost":0.000465},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 3.09562175s diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_deepseek-chat-v3.1-free.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_deepseek-chat-v3.1-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e8ed6541566fba76e914a827988b774f2b63168f --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_deepseek-chat-v3.1-free.yaml @@ -0,0 +1,125 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 899 + 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":"deepseek/deepseek-chat-v3.1:free","max_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},"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-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll add","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":" and multiply","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":"2 and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":" 3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":" simultaneously for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_f8a2","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"call_a0de","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]} + + data: {"id":"gen-1758707598-tO0KIG6aOipHWTP5VUZL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707598,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":250,"completion_tokens":52,"total_tokens":302,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 959.348834ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1328 + 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"},{"content":"I''ll add and multiply the numbers 2 and 3 simultaneously for you.","tool_calls":[{"id":"call_f8a2","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_a0de","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_f8a2","role":"tool"},{"content":"6","tool_call_id":"call_a0de","role":"tool"}],"model":"deepseek/deepseek-chat-v3.1:free","max_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},"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-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" addition of","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" 2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" and ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":"3 gives","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":"5**,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" and the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiplication of","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" 2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" and ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":"3 gives","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":" **6","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":"**.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758707601-ZEHA6N51QPLSCKBvmlga","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707601,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":310,"completion_tokens":26,"total_tokens":336,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 886.54375ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cd2e4cb2491069870d9918d978443c3d83a1f9cb --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash.yaml @@ -0,0 +1,77 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 894 + 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":"google/gemini-2.0-flash-001","max_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},"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-1758707458-cZd2shzRFx9lwNMJ5ZO9","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707458,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_OANWtA5QFZ8mJn7rBE3t","type":"function","function":{"name":"add","arguments":"{\"b\":3,\"a\":2}"}},{"index":1,"id":"tool_1_multiply_iU7twvuBC0wB45OQUN6N","type":"function","function":{"name":"multiply","arguments":"{\"b\":3,\"a\":2}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707458-cZd2shzRFx9lwNMJ5ZO9","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707458,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":57,"completion_tokens":10,"total_tokens":67,"cost":0.0000097,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000057,"upstream_inference_completions_cost":0.000004},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 820.145667ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1337 + 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":"tool_0_add_OANWtA5QFZ8mJn7rBE3t","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"tool_1_multiply_iU7twvuBC0wB45OQUN6N","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_OANWtA5QFZ8mJn7rBE3t","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_iU7twvuBC0wB45OQUN6N","role":"tool"}],"model":"google/gemini-2.0-flash-001","max_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},"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-1758707459-XituTw65gkdm6enlsHPw","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707459,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707459-XituTw65gkdm6enlsHPw","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707459,"choices":[{"index":0,"delta":{"role":"assistant","content":" sum of 2 and 3 is 5, and the product of 2 and "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707459-XituTw65gkdm6enlsHPw","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707459,"choices":[{"index":0,"delta":{"role":"assistant","content":"3 is 6.\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707459-XituTw65gkdm6enlsHPw","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707459,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":113,"completion_tokens":26,"total_tokens":139,"cost":0.0000217,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000113,"upstream_inference_completions_cost":0.0000104},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 919.224541ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..81d4b2d655813c680deeec3c5947a577b8cbc0c2 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash.yaml @@ -0,0 +1,77 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 890 + 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":"google/gemini-2.5-flash","max_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},"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-1758707449-SmG2sQU3DafnA4R6f6rX","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707449,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_g5rMrMPAMKgPsRepgdFC","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"index":1,"id":"tool_1_multiply_d3AvCfoqx7tOMV0AZYkL","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707449-SmG2sQU3DafnA4R6f6rX","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707449,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":57,"completion_tokens":10,"total_tokens":67,"cost":0.0000421,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000171,"upstream_inference_completions_cost":0.000025},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 937.291875ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1333 + 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":"tool_0_add_g5rMrMPAMKgPsRepgdFC","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_d3AvCfoqx7tOMV0AZYkL","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_g5rMrMPAMKgPsRepgdFC","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_d3AvCfoqx7tOMV0AZYkL","role":"tool"}],"model":"google/gemini-2.5-flash","max_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},"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-1758707450-epUPlnIGGp6ROZ9rXQh4","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707450,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707450-epUPlnIGGp6ROZ9rXQh4","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707450,"choices":[{"index":0,"delta":{"role":"assistant","content":" + 3 = 5 and 2 * 3 = 6.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707450-epUPlnIGGp6ROZ9rXQh4","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707450,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707450-epUPlnIGGp6ROZ9rXQh4","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707450,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":109,"completion_tokens":17,"total_tokens":126,"cost":0.0000752,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000327,"upstream_inference_completions_cost":0.0000425},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 708.376417ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7be1c561d7c9d5dca71a1645e2928400063d75a5 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5.yaml @@ -0,0 +1,163 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 890 + 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"}],"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo07_PpyFcTomGAGiAa06AOjfZACNWMacGI-S6nJzLUNw4d--68tu41wvYuwWLUdMLkHMWI6mydvWcP6YFvHuwXst5Y9prOK9Jic6-_WwJz1IbWd0IflU8fd5XwarWXHQB9zKjDJC8LMGebc1mLv1YqfL8Ogu0wbEw11B46tItIA355XOLyn-5lFQIy_12btvxzbWLO14B1O9mqgjGlayQTS6AgbsWvMo0KI3ExZv4Y_TGiCDBDxHb-QLLDclSNH7RPXKDkuFuMJxaytkJqQtrIWe66hoVVoxWGq7LSKiP0VnBkKs4bOXW21XSAReDKKRFHhRNqTgbd8bTdrliMnYX37t9C89nq3pWTD-WZJo8VTEu8Z-Dr0vn4CrJE-eDgcFv6nb0cUseo0qGVcqZETFUxB8EB5OqGZPHXWScIb3OCB8DYNx3H7nwAFj3rv2XR7IL0vFw6wF4-Jl7aLxoQbcy_awGLxUn6ZMcUT8--FjNziLzECxYzlUhtiyZx-cWV_-I7A7vkT8MOatJNE-LEoFQerPyjsedLWssyqsbnjtgNyzMEcqacClJ5U6rDys9fL2FZ1zYtUp3BvBqAahe3L_qFBavsU6kv58BPUhVfFMf0Vchsdl4iQ7vWzke6mzHyr71b5ow2e0N7BS4rSVESTyIWSh8-r-HWm-nVS9Y-M40Q8lBbo4xwRp1p80YLiWhyE-E6JOkIuVEPebqxFld7vO3XyvIEdGdMmmpW3d2xsEViJGKVCH0vBR8h2IT94ODUaAPPGhePNRqG7iUsZA2qOx8b0ynnYHwQf-uNru2GBfssHCTLHMzb0HB-G9iHhT65aee7cQ42rE4QuYYhDgj3lNSxZhppnHmsw8MXVkeP-EvTxmsLQzytJ0h4jFpKxGwObm7maj0_0QjbBNLXdZAA8Q_OX_RZVGAOaPvVvk0qjkSsooAFnPU2yRJiifzWwZWxy_2BAKXMKa_EU5Tfn2S93lrsixMLKfjcYP5jRXVz-0bgJ-ejdb_GjOLtdPlEI_f9WieaQFkJYjZ-zRC_BA8MwyAR3_63B4cq_vVD5uoqCQJJDhHx00pb-uu0u93Ptj2q1sNdeXdDOo4OpWIvygDFZz5pT470Ico1b1lme2-Sj3u-OU8yXvtfluEPyNY4xzHF9ookbMwpMVa1lIR0M2jR7g-TO_RQBlZXtacXrb9Pgs2-WO4uuZK1l29wwQvBc4GJBwgV_Gywmbh4AmlxcU0im3nOyFCEGxjFlii8hUTWqzO5fTokJ47lLHZR7E84u9TVjpqYIXMJUOMytpDkwn2T385NJ--UmwkpxC2SzVFsC0izayyeKmABng-xDY4wlF3uyj_j8mRWtltWc5ElygqIZTROmQJ7zgaRrCk2TAfyHUq1_uCpzBE8jsqQo02VjoS8VrQuIBjNOQcH2nm5Ya93_cWTETcnMgCWABIZeV231bHCdMiB_wwhs9bPSXVVZuXHxQkXPeQZuwTQybwSIpAUJ3a6MMCDCboLIwmUieHUqh-zcnZBhwPzBjvxGjt96rqqFxonjuEqv8FRPB55N5NYV7RECYgfNDRuVJrrThZmAxn-46F_CYlOsGtvSaZ_iPH0ai8xJKNJdmEV0WmygpONCCV-4Dwao0UIzUVOn-pJn-mXyvJdmfe3Ci8sr7AG-DLANs4F2EKsEznPlTBhPC7b_4zynh9rk8h3VK_Vythi91rGtJ3dwYDWJD8FZQ_Ns4Hge8zl4xOGixGWGU-RPbjJ8y0HlEec58otyIK3hgyaENo0dEp0F1ZDpV5WwFgJZtsk7p9nuHy34VFo4-rQczz7BcGUnFAoADiT_yEUod77kW7qDVfKP5N-_HVVHvKdJEfcBPOMQtjF242CjWyXwUgFAlaP2ToB9Cd_Fx6KJykwuaMrAok2k2iOjeP69ayFW6B5J1oAix0k8bOSPSUtjRCmTCqr5Qz02knUi6HSTZ06tcy7yIBQmSDgi79Mstsj1sWgPXjL5I_1q1EKpSEhRC2kB24pP0Ae87htwm0wN3g0khYC00zoYs2SKUCJkVdhMkfrNVw1tUh9VljB_F5uHDXZqe-c0OmYn401y8sg9C541crbWWzMVj83ujv6k90d91O3YimfOW_Ry0mkwTs-DTFeTWDyXJrcQ==","id":"rs_68d3bfcab88081958b4cea477aa043f402144343751eb574","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_0gYfgH40oACzxsGHA4yrGZRo","index":1,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_DXpyadB2WBImeuLgezBVYREt","index":2,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"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-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707657-uYrSMCWAM0Q0UnNsYPEm","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707657,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":108,"completion_tokens":248,"total_tokens":356,"cost":0.0013075,"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.00124},"completion_tokens_details":{"reasoning_tokens":192,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 536.1295ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1315 + 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_0gYfgH40oACzxsGHA4yrGZRo","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_DXpyadB2WBImeuLgezBVYREt","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_0gYfgH40oACzxsGHA4yrGZRo","role":"tool"},{"content":"6","tool_call_id":"call_DXpyadB2WBImeuLgezBVYREt","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},"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-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"Results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multip"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"lication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707663-LnOdydhBsFhyVzzUncbJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707664,"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: 1.401480708s diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8951dc0a08cd183e43c4e6a1c3e2b5de4d429adf --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free.yaml @@ -0,0 +1,521 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 888 + 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":"x-ai/grok-4-fast:free","max_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},"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-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_81504806","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0,"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_34808472","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1,"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707439-7ndW4PkskCrSByfoCLrM","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707439,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":394,"completion_tokens":237,"total_tokens":631,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":393,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":169,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 291.064292ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1249 + 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_81504806","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_34808472","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_81504806","role":"tool"},{"content":"6","tool_call_id":"call_34808472","role":"tool"}],"model":"x-ai/grok-4-fast:free","max_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},"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-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" sum","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" of","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"5","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" \n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" product","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" of","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"6","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707441-eKxpxCu2fkJbV96tbCNt","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707441,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":645,"completion_tokens":53,"total_tokens":698,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":597,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":28,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 388.424916ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-code-fast-1.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2312141547271bdaf11b0bcb7b416f8f576c66d4 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-code-fast-1.yaml @@ -0,0 +1,1033 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 888 + 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":"x-ai/grok-code-fast-1","max_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},"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-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.text","text":" asked","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instructions","reasoning_details":[{"type":"reasoning.text","text":" instructions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.text","text":" say","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Always","reasoning_details":[{"type":"reasoning.text","text":"Always","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" at","reasoning_details":[{"type":"reasoning.text","text":" at","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.text","text":" same","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.text","text":" time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"\n","reasoning_details":[{"type":"reasoning.text","text":".\"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Processing user request \n- The user wants to add and multiply the numbers 2 and 3, following instructions to use both operations together.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Processing user request \n- The user wants to add and multiply the numbers 2 and 3, following instructions to use both operations together.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- The task requires using both addition and multiplication functions simultaneously.","reasoning_details":[{"type":"reasoning.text","text":" \n- The task requires using both addition and multiplication functions simultaneously.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- Found that the format involves using specific function syntax, likely for computation.","reasoning_details":[{"type":"reasoning.text","text":" \n- Found that the format involves using specific function syntax, likely for computation.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- Planning to apply both operations to 2 and 3, ensuring the result reflects both addition and multiplication.","reasoning_details":[{"type":"reasoning.text","text":" \n- Planning to apply both operations to 2 and 3, ensuring the result reflects both addition and multiplication.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Determining function call format \n- The instructions specify using and tags for function calls, suggesting a structured format.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Determining function call format \n- The instructions specify using and tags for function calls, suggesting a structured format.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_95001630","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0,"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_64679052","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1,"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":467,"completion_tokens":496,"total_tokens":963,"cost":0.00075676,"is_byok":false,"prompt_tokens_details":{"cached_tokens":448,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00001276,"upstream_inference_completions_cost":0.000744},"completion_tokens_details":{"reasoning_tokens":428,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 449.144917ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1249 + 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_95001630","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_64679052","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_95001630","role":"tool"},{"content":"6","tool_call_id":"call_64679052","role":"tool"}],"model":"x-ai/grok-code-fast-1","max_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},"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-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.text","text":" tools","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" returned","reasoning_details":[{"type":"reasoning.text","text":" returned","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"5","reasoning_details":[{"type":"reasoning.text","text":"5","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"6","reasoning_details":[{"type":"reasoning.text","text":"6","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" added","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" by","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"5","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiplied","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" by","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"6","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707387-yI3YStFnEodgIypAuc4Z","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707387,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":977,"completion_tokens":50,"total_tokens":1027,"cost":0.00010912,"is_byok":false,"prompt_tokens_details":{"cached_tokens":896,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00003412,"upstream_inference_completions_cost":0.000075},"completion_tokens_details":{"reasoning_tokens":31,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 341.03575ms diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c720b7298065b7f627c78652166c99ea5d1ec54f --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2.yaml @@ -0,0 +1,81 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 890 + 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":"moonshotai/kimi-k2-0905","max_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},"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-1758707352-SNJyYrQzqUyk88aRWeVL","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707352,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707352-SNJyYrQzqUyk88aRWeVL","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707352,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll perform both addition and multiplication on the numbers 2 and 3."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707352-SNJyYrQzqUyk88aRWeVL","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707352,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]} + + data: {"id":"gen-1758707352-SNJyYrQzqUyk88aRWeVL","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707352,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]} + + data: {"id":"gen-1758707352-SNJyYrQzqUyk88aRWeVL","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707352,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":171,"completion_tokens":29,"total_tokens":200,"cost":0.0001435,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000855,"upstream_inference_completions_cost":0.000058},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 691.313708ms + - 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"},{"content":"I''ll perform both addition and multiplication on the numbers 2 and 3.","tool_calls":[{"id":"0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"0","role":"tool"},{"content":"6","tool_call_id":"1","role":"tool"}],"model":"moonshotai/kimi-k2-0905","max_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},"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-1758707354-px59N1bF2lVXCLSiieUy","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707360,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707354-px59N1bF2lVXCLSiieUy","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707360,"choices":[{"index":0,"delta":{"role":"assistant","content":"The results are:\n\n**Addition:** 2 + 3 = 5\n**Multiplication:** 2 × 3 = 6"},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758707354-px59N1bF2lVXCLSiieUy","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707360,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":275,"completion_tokens":28,"total_tokens":303,"cost":0.0001935,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001375,"upstream_inference_completions_cost":0.000056},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 5.790721792s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a47d0b1ef2260db668387b5251bc7acff4a94591 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 200 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"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{\"id\":\"gen-1758707388-cQuMCl4UXT7lXuzi2b0D\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758707388,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! (Oh-LAH!)\\n\\nThat's \\\"hi\\\" in Portuguese. You could also say \\\"Oi!\\\" (OY!) which is a bit more casual.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":16,\"completion_tokens\":42,\"total_tokens\":58,\"cost\":0.000678,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000048,\"upstream_inference_completions_cost\":0.00063},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.961599042s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free.yaml b/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ac10768afea6bbc55e53862365f80e85085bdfaf --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 207 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"deepseek/deepseek-chat-v3.1:free","max_tokens":4000,"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\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707460-MXE8C7QRZebwP2qdeHa4\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758707460,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":13,\"completion_tokens\":4,\"total_tokens\":17,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 8.606397792s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..96621dca4db0151bd1a9626f04e31ac8edc0fd84 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 202 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"google/gemini-2.0-flash-001","max_tokens":4000,"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{\"id\":\"gen-1758707451-1wNt6CfdPqkrm0PZfTTF\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758707451,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\\n\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":9,\"completion_tokens\":3,\"total_tokens\":12,\"cost\":0.0000021,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":9e-7,\"upstream_inference_completions_cost\":0.0000012},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 802.818625ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b49669378865249bef85945f46b3693883f36b7d --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 198 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"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{\"id\":\"gen-1758707442-HtLwlVox0uevwax9OSt6\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758707442,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! (pronounced \\\"oh-LAH\\\")\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":9,\"completion_tokens\":9,\"total_tokens\":18,\"cost\":0.0000252,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000027,\"upstream_inference_completions_cost\":0.0000225},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 765.646458ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6e71e68a2a2277b81ce9b6896b85f2d32108a2a8 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 198 + 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}}' + 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{\"id\":\"gen-1758707610-yB7fsLutOErJTdVhkzne\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707610,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":\"**Responding in Portuguese**\\n\\nThe user asked me to say hi in Portuguese, so I want to keep it simple and straightforward. The best options are \\\"Oi\\\" or \\\"Olá.\\\" Since they asked for a concise answer, I think I'll just respond with \\\"Olá!\\\" but maybe I'll also mention that it means \\\"hi\\\" or \\\"hello.\\\" Nonetheless, I'll stick to the simplest response. So, I'll just say, \\\"Olá! Done.\\\"\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Responding in Portuguese**\\n\\nThe user asked me to say hi in Portuguese, so I want to keep it simple and straightforward. The best options are \\\"Oi\\\" or \\\"Olá.\\\" Since they asked for a concise answer, I think I'll just respond with \\\"Olá!\\\" but maybe I'll also mention that it means \\\"hi\\\" or \\\"hello.\\\" Nonetheless, I'll stick to the simplest response. So, I'll just say, \\\"Olá! Done.\\\"\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo07-faKE7Hzjjoif0K6Cz7yMEXIXVkUMu8WEO-PkyWr54VCWI1yprdYfb9fAaSDLad7pUc8vg5RnFw2Ah3xVs1iH6AWZEcNuC3LFgg_Mnzeg8NA1l7MtMeNx-tVh1ib4Dj53CYl7aCmJAuRoeeEFdxNicyTITtj4CzcspmFmIsXjmbl3B6beN2rTsWuPKjnbTsdJKUfTOIrC6IALGLChR7h7y5lR7Ba245z7c8yc1Fuq8eUS5uBFFjmAZXoJs2okx2mOnc63t5USyM7uZUlPcGIAKvIeokX6S-tSyqUWygpLQvWEv3azgHQ1iuc1OziCwQLiYqwg7AF4VPZsHGnorxzcJETmPpunrImF18Q36NBaUVorVllwfsvAyieX6aryM1ohbai2KkltR7kwtBqacudIR7m6sILLWqcOJJMBlO-TDZq6vDQg8BFFLw6R8uKGrhm1sLizD-UDki-ZqQj2KnK6huDvHxk4hosgbQ1nSJ4UxxqGUuc3IoHKcVUEctvuFOJlGHcl4Thy_KwOrKVtBABJeVlAfbaKWQl6ed14p7-Epgo3M1PuR6jaX_8vFrLk3Pi7YIrLewgq1eX5k8SQOWW8XYGnaWFzslRbf7I6oVQi8lst1bys01xQQmTlCe21-7VreU4hsdfM9OklOLJZhE1uV9z8pJcGm1amvyjioHMpvhu7__qbic4od5iQfKruISBcsZhYj6TQQ2o82IXBlrEyZx6b4JbK0q7Ejoy-Wu0PGnWrLNbIcVBvSFkKNKNyPU_nHvpU5p4kCj2HxytaOcN2knFIllQaCe95fi226DWDknWgM_pJKGL1W6yZuOvFcb0Eqm42ywrLYskPr5iq-HjURtiTpvqlzljXrjMxOBr7U8fOzA-9bJaYETMp4dvAilYpIX8TD8d3p-NzjgtGICtsjbyDR1TKjeQMar4oQJIeRQ1UGmwDaWUlHij057XsYfCxe5-PgfTL2hmqgY1Ptn4gL9Asjrd2xx-SRD7-Zcs1a4tpHoYePebBIhuvspdBDFNYl5cqZAQ6s0PDzxne8fhZyNi9o2xT9sJwZVpo5uOTNaQcrIaNNczcTfmj1zo0-wNYRJKbFRikrsEAQ-PZYKCz_iHm04lblR0XuBJHKirPM-8TqPJRgJ6AcQiI8e9E1EK2BlaR6IuqRqNVxRs6Ki65yYCoAn9pMRJcYQ8C2f2LxC2Vr9dGwMMk0E5wVp705xwziXX-0eucQLN7NyPrO5lz0w_er7ul633LpfVtsNNSPfvKqx7imwvNtV42eI2Bwiq5O1VLV4-n3IsfIckTDhpr8CjphUmudRSBbh3r8_rG6syqHW5xg-Q-DBKdSjoyqEeQUqCQ0EUi06AkBBWROoFMS-Q==\",\"id\":\"rs_68d3bf9c0d44819489ff8e37a02d93a3007f473bfaf79047\",\"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.408275916s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4e242773cff46c60c2fbf252c1ded157b808a3b8 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 196 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"x-ai/grok-4-fast:free","max_tokens":4000,"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-1758707423-SXlaCZuxfDotppEssGeP\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758707423,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! (That's \\\"hi\\\" in Portuguese.)\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":126,\"completion_tokens\":108,\"total_tokens\":234,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":117,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":98,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 764.104458ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1.yaml new file mode 100644 index 0000000000000000000000000000000000000000..39423872728576964022e51e21d4235bdbfac493 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 196 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"x-ai/grok-code-fast-1","max_tokens":4000,"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{\"id\":\"gen-1758707363-ByJwx0RLTTDWkvGGh30L\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758707363,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Oi! (pronounced \\\"oy\\\") That's \\\"hi\\\" in Portuguese, informal style. For something more formal, you could say \\\"Olá.\\\"\",\"refusal\":null,\"reasoning\":\"First, the user said: \\\"Say hi in Portuguese.\\\"\\n\\n\\n## Interpreting user request \\n- The user asked to say \\\"hi\\\" in Portuguese, a straightforward language-based query. \\n- This aligns with providing helpful, natural responses tailored to simple requests. \\n\\n## Crafting the response \\n- The goal is to deliver a truthful and easy-to-understand greeting in Portuguese. \\n- \\\"Olá\\\" is the appropriate translation for \\\"hi\\\" in Portuguese, fitting the user's needs.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"First, the user said: \\\"Say hi in Portuguese.\\\"\\n\\n\\n## Interpreting user request \\n- The user asked to say \\\"hi\\\" in Portuguese, a straightforward language-based query. \\n- This aligns with providing helpful, natural responses tailored to simple requests. \\n\\n## Crafting the response \\n- The goal is to deliver a truthful and easy-to-understand greeting in Portuguese. \\n- \\\"Olá\\\" is the appropriate translation for \\\"hi\\\" in Portuguese, fitting the user's needs.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":213,\"completion_tokens\":297,\"total_tokens\":510,\"cost\":0.00045354,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":192,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00000804,\"upstream_inference_completions_cost\":0.0004455},\"completion_tokens_details\":{\"reasoning_tokens\":269,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 883.824208ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2.yaml new file mode 100644 index 0000000000000000000000000000000000000000..33536b05ea66bc92c9fedc771afa8bdd33c3fbab --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 198 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"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-1758707333-p56PcP6Fku3soN8OO0nY\",\"provider\":\"Novita\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758707334,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ef28f882\",\"usage\":{\"prompt_tokens\":20,\"completion_tokens\":4,\"total_tokens\":24,\"cost\":0.000022,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000012,\"upstream_inference_completions_cost\":0.00001},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.916314584s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..de2db08c3ec5fdf9f54ff3edd3570380de6a085d --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4.yaml @@ -0,0 +1,46 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 254 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"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-1758707391-oEBdBYBxedqbaClh0BGu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707391,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707391-oEBdBYBxedqbaClh0BGu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707391,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707391-oEBdBYBxedqbaClh0BGu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707391,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707391-oEBdBYBxedqbaClh0BGu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707391,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707391-oEBdBYBxedqbaClh0BGu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707391,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758707391-oEBdBYBxedqbaClh0BGu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707391,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":7,"total_tokens":23,"cost":0.000153,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000048,"upstream_inference_completions_cost":0.000105},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 2.318227084s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_deepseek-chat-v3.1-free.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_deepseek-chat-v3.1-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..853769db565bd02ccfe72d1f83030e23d23e3ad8 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_deepseek-chat-v3.1-free.yaml @@ -0,0 +1,54 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 261 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"deepseek/deepseek-chat-v3.1:free","max_tokens":4000,"stream_options":{"include_usage":true},"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-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":"á!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":"That","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":"Hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":"\" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese.)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758707472-x5t438dHoytYm6g44YrF","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707472,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":13,"completion_tokens":13,"total_tokens":26,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 10.257364292s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..113f124ed6c52f8f9a5a1e6f882b43d584781eea --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash.yaml @@ -0,0 +1,40 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 256 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"google/gemini-2.0-flash-001","max_tokens":4000,"stream_options":{"include_usage":true},"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-1758707452-4l04zX34emMxhw9rNas0","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707452,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707452-4l04zX34emMxhw9rNas0","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707452,"choices":[{"index":0,"delta":{"role":"assistant","content":"!\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707452-4l04zX34emMxhw9rNas0","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707452,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":9,"completion_tokens":3,"total_tokens":12,"cost":0.00000315,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00000135,"upstream_inference_completions_cost":0.0000018},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.259653584s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bb65a921a1ef40f1b35645c21a273ce0963c9bb9 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash.yaml @@ -0,0 +1,40 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 252 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"stream_options":{"include_usage":true},"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-1758707443-cs9eDvaHcmOz5UPaJ037","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707443,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707443-cs9eDvaHcmOz5UPaJ037","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707443,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707443-cs9eDvaHcmOz5UPaJ037","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707443,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":9,"completion_tokens":2,"total_tokens":11,"cost":0.0000077,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000027,"upstream_inference_completions_cost":0.000005},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.112134959s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..828a7798bf336d947e20a06b9b5b7061ca7285e7 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5.yaml @@ -0,0 +1,46 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 252 + 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},"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-1758707616-U7xoiDiAy5I0o0e79JJR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707616,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707616-U7xoiDiAy5I0o0e79JJR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707616,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo07-kfwxBotcr64CO9hITyszVTurK0CRS8Y1wNCNIoz4SBw-74Ffa3Y8pRSpvIIWAs6r1wWhrN2whf5URnHPNU-YTTb79XPoaoboBpZ4t_DOZLP8HunJqSzZGAYP89TMbKrT2m1bFGNOBBvh8Y8XjF4XqKT4wYO-qszhQv9_osoa6XWUhZPLIIzDgeOha08hq5NBasDvXCbEXt_HO-BVX0C0NGfbImk96_kSjNgiVujegcEzfjdcM4KJAW3-hsv4oR_6jPeTglzBVGNlC1sPvyvUU5Oo6V-BeP3N9Em0YB5E-1fTWZtOE9_T547pkB_1H3sA8IUZwxLmBJq4PX24eAwbtDxD4vY7Zg_KHjxmXL4VRETdbKGNV1uCe0UhmJTlWKlR67y_TwrBi9WdPo7xelFmYuHOH-HRs5iwJTLjicTFh6ls424IeMPC65ZZGlndb7bXe4cQPjEBj7U3JPCuk8kiaXMrEAn9zTBcon-dsD277wV_J-qbAiq_js24Bb6NYW0hcNu2rIoiWo3S14QnBbg-6TDba5LU2vDOnCEwc7nQi50uHXR-zADgxZ_t0-bqoEK9_Mi-WizU4QUXYaJcmdS39mgV--5LRb398ehCPtZR4eh2Obd8COTNAiCPCvHIRl7rn1NAgBzoMotfybP-E1J9QeS2NiDC0Irn7m_TD38KcUS1hZLobMA0eNDasnTop87LBUtVu_Fa7_BM4IcCAV_30ToMFXNip67T3P-kAE9YQEk5Mc6R-Zmjbf04ph4Ps5eS9a5trtJiQbTU96bD9gghJcKokgJ6rwlo9XgGRUXNxXKedmLqNeZ_BvEyaaP3pIACKdJCcyGPoBJmjmbgvKQawZgaqUngkNlxZVgg0UFsoSykEzO8Mk025xTzSDjoo1wR8bnoHEwwNtoFoaDlHOdfCHLN1bicLwGgubG6hIv9y22SVKH_2ffpAHEm9Ia9gbYf4_hW2OETY_CdomZ0Qgfa_d4uALKFAfe3v1rKwkHka-6p3mnaxEOYMWNlClhvVNBBX6YgHlpPmGAyG6-AQulz_tLEzO3RbtQDqSyMJDcDilZq1il-VVpWafSlkMULQUNvJgM2_EBuSe8htbI10XzE4tne3A3vsINIboud5cUVI3GqRM-oOSv1DGn_wgYO--zsy_xlvBkKBXaZNwjoSZopaS3XeHBHU-iIuXYoMpg5i4j7jAlrfKBfDrQFLD34HJsr8GmCVcGdynmpg_wJUlLpln8lbq2DJFlanjSWr01rDR_XW2M-7WoeGnOyfG5BTUaKmrLKyU8-fjjX4K8PMPb8opXh32Spt8YA-x7EXDh8zZ_kMR8z257-NiUnU3XEXdqleiiUGWDCcEAiryyJ2OXsPbqtMp-MxntbRt7Qfn5U-ukvMMRzzGBb7Zl7aESfqewV8vYctiM6C0_qv1vOYGwE_ExXRJ_mHqU8s7siE4amA8Yc=","id":"rs_68d3bfa2067481968eb16fd0a413f92806be9f650a98ad7b","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707616-U7xoiDiAy5I0o0e79JJR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707616,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707616-U7xoiDiAy5I0o0e79JJR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707616,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707616-U7xoiDiAy5I0o0e79JJR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707616,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707616-U7xoiDiAy5I0o0e79JJR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707616,"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.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}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.5629425s diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4e4334a5c607e056c08fe5cc70f05e9c11134aac --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free.yaml @@ -0,0 +1,296 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 250 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"x-ai/grok-4-fast:free","max_tokens":4000,"stream_options":{"include_usage":true},"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-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"That's","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":".)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707425-gWuwPytIElIgR1uWjk11","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707425,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":126,"completion_tokens":129,"total_tokens":255,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":125,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":119,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 611.697959ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e8c01b6e7fd31b57532f5e646d79829b1c051216 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1.yaml @@ -0,0 +1,32 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 250 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"x-ai/grok-code-fast-1","max_tokens":4000,"stream_options":{"include_usage":true},"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-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\"First\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"First\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\",\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\",\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\" the\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\" the\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\" user\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\" user\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\" said\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\" said\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\":\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\":\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\" \\\"\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\" \\\"\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\"Say\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"Say\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\" hi\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\" hi\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\" in\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\" in\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\" Portuguese\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\" Portuguese\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\".\\\"\\n\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\".\\\"\\n\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":\"\\n\\n## Addressing user request \\n- The user asked for a greeting in Portuguese, a casual and simple request.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"\\n\\n## Addressing user request \\n- The user asked for a greeting in Portuguese, a casual and simple request.\",\"format\":\"unknown\",\"index\":0}]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"Oi\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"!\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" (\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"That's\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" \\\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"hi\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\\\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" in\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" Portuguese\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\".\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" Pronunciation\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\":\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" like\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" \\\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"oy\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\\\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" in\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" English\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\".)\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" \\n\\n\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"If\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" you\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" want\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" something\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" more\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" formal\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\":\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" \\\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"Olá\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"!\\\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" (\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"pronounced\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" oh\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"-L\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"AH\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\").\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" \\n\\n\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"Want\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" to\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" respond\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" back\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"?\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" Just\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" say\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" anything\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"!\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\" \U0001F609\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\",\"reasoning\":null,\"reasoning_details\":[]},\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"logprobs\":null}],\"system_fingerprint\":\"fp_10f00c862d\"}\n\ndata: {\"id\":\"gen-1758707368-0ZBzSnylbHZFbUjuaBTh\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion.chunk\",\"created\":1758707368,\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\"},\"finish_reason\":null,\"native_finish_reason\":null,\"logprobs\":null}],\"usage\":{\"prompt_tokens\":213,\"completion_tokens\":183,\"total_tokens\":396,\"cost\":0.00028254,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":192,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00000804,\"upstream_inference_completions_cost\":0.0002745},\"completion_tokens_details\":{\"reasoning_tokens\":136,\"image_tokens\":0}}}\n\ndata: [DONE]\n\n" + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 492.433584ms diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2.yaml new file mode 100644 index 0000000000000000000000000000000000000000..22cc77f3190f1577954ff809893b6737e8c147ca --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2.yaml @@ -0,0 +1,46 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 252 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"stream_options":{"include_usage":true},"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-1758707335-yor723CM17VJ3x7kYOle","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707335,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707335-yor723CM17VJ3x7kYOle","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707335,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707335-yor723CM17VJ3x7kYOle","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707335,"choices":[{"index":0,"delta":{"role":"assistant","content":"á"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707335-yor723CM17VJ3x7kYOle","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707335,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707335-yor723CM17VJ3x7kYOle","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707335,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758707335-yor723CM17VJ3x7kYOle","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707335,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":20,"completion_tokens":3,"total_tokens":23,"cost":0.000016,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00001,"upstream_inference_completions_cost":0.000006},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 718.457792ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f0effc254a3454cecd45e7c8609bb6536e8efe57 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 492 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"anthropic/claude-sonnet-4","max_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"}],"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{\"id\":\"gen-1758707394-Tr5hy4g3p1Y5Uq1I47Ss\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758707394,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll get the current weather information for Florence, Italy for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"toolu_vrtx_0135urnkaYuL9TuZ3HgN8DJm\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence, Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":394,\"completion_tokens\":68,\"total_tokens\":462,\"cost\":0.002202,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.001182,\"upstream_inference_completions_cost\":0.00102},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 2.217559833s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 839 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the current weather information for Florence, Italy for you.","tool_calls":[{"id":"toolu_vrtx_0135urnkaYuL9TuZ3HgN8DJm","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_0135urnkaYuL9TuZ3HgN8DJm","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_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"}],"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{\"id\":\"gen-1758707397-JNmuZc2HNNXEheF8S2u3\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758707397,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The current temperature in Florence, Italy is 40°C (104°F). That's quite hot! If you're planning to visit or are currently there, make sure to stay hydrated and seek shade or air conditioning during the hottest parts of the day.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":477,\"completion_tokens\":57,\"total_tokens\":534,\"cost\":0.002286,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.001431,\"upstream_inference_completions_cost\":0.000855},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 2.4004075s diff --git a/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free.yaml b/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..68601a9567300dd521e64e519880f97e6a6a00f6 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 499 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"deepseek/deepseek-chat-v3.1:free","max_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"}],"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{\"id\":\"gen-1758707495-8bMciZMhIMgNQka8QksI\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758707495,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll get the weather information for Florence, Italy for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_0b94\",\"function\":{\"arguments\":\"{\\\"location\\\": \\\"Florence\\\"}\",\"name\":\"weather\"},\"type\":\"function\"}]}}],\"usage\":{\"prompt_tokens\":160,\"completion_tokens\":28,\"total_tokens\":188,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.304680875s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 779 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the weather information for Florence, Italy for you.","tool_calls":[{"id":"call_0b94","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_0b94","role":"tool"}],"model":"deepseek/deepseek-chat-v3.1:free","max_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"}],"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\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\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\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\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\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-1758707498-1QIBOB8CWhdU8iqfvTvu\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758707498,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The current temperature in Florence, Italy is 40°C. That's quite warm! Florence appears to be experiencing hot weather conditions at the moment.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":193,\"completion_tokens\":31,\"total_tokens\":224,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 10.055703542s diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6a9fb125929e4843b29d8bfde6965b1cc5508db3 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 494 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"google/gemini-2.0-flash-001","max_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"}],"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{\"id\":\"gen-1758707453-6ZWm2ogyoo4f0XH3ES0x\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758707453,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"tool_0_weather_s6cCIoIkm1rwKp21v6s4\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence,Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":28,\"completion_tokens\":5,\"total_tokens\":33,\"cost\":0.0000048,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000028,\"upstream_inference_completions_cost\":0.000002},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 854.689125ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 757 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"tool_0_weather_s6cCIoIkm1rwKp21v6s4","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_s6cCIoIkm1rwKp21v6s4","role":"tool"}],"model":"google/gemini-2.0-flash-001","max_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"}],"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{\"id\":\"gen-1758707454-YvdGftnzcKsnPqksAgX9\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758707454,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"It's 40 C in Florence, Italy.\\n\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":59,\"completion_tokens\":13,\"total_tokens\":72,\"cost\":0.0000111,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000059,\"upstream_inference_completions_cost\":0.0000052},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 612.544ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fe49fa62739b22332866288715c7a28b3376ca7f --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 490 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"google/gemini-2.5-flash","max_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"}],"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{\"id\":\"gen-1758707444-vRhnpxRzTu7V5VXsVWZ5\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758707444,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"tool_0_weather_5qVIVMd9tNTT4rWQHwoH\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence,Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":28,\"completion_tokens\":5,\"total_tokens\":33,\"cost\":0.0000209,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000084,\"upstream_inference_completions_cost\":0.0000125},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.017666958s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 753 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"tool_0_weather_5qVIVMd9tNTT4rWQHwoH","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_5qVIVMd9tNTT4rWQHwoH","role":"tool"}],"model":"google/gemini-2.5-flash","max_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"}],"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{\"id\":\"gen-1758707445-9QwcmeRFAVYvIMLIDY0z\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758707445,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The weather in Florence, Italy is 40 degrees Celsius.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":56,\"completion_tokens\":13,\"total_tokens\":69,\"cost\":0.0000493,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000168,\"upstream_inference_completions_cost\":0.0000325},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 729.492458ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ce09129b27fc44eea5a4c9c162793e8fff55c016 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 490 + 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"}],"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-1758707621-a8ieNbtS4Juu5H9Mjbtg\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707621,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Getting weather for Florence**\\n\\nI need to check the weather, so I’ll use the weather tool directly with the location set to Florence, Italy. I’ve confirmed that the tool exists and requires a location string in JSON format. Since we only need this one call, I don’t need to use the multi-tool setup. I can just call the functions.weather directly. Okay, let's proceed with that!\",\"tool_calls\":[{\"id\":\"call_1vGW5LKCp6Fx5JUmqc4MC6ct\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Getting weather for Florence**\\n\\nI need to check the weather, so I’ll use the weather tool directly with the location set to Florence, Italy. I’ve confirmed that the tool exists and requires a location string in JSON format. Since we only need this one call, I don’t need to use the multi-tool setup. I can just call the functions.weather directly. Okay, let's proceed with that!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo07-pmkwdUVCynLIw1cEyahrGEebC3UqSKW6eHvf_JMT6cHNQ_wWYyIsYFN7T_72sXmI5eKyPQKhymZVFeIgZGv3eTww8DbBFjG5VjE_r3bptT28b2kjIFrAefzEg1by8uj6TO_CRnobDjSv1jb9y2ipzOQ2SyvNQmq95xZPk5mzRePfw-M-9jH88FXieEIxjr-n5U9rEzCqHYrIxAmnDBJsjYOWJOMEs1GY0mWvLFGPzjuNg_x9GRsv5qNaA12Ji9_Pu3bul4R8TCfXF4GHzXa-TXL0NsG6WaG04kdXnpSvUSrRiZkIjEsgKZJjZacHjM5mQztBE2ilvcjQTcXxEesR-clOLFIBNovWsnMRUeMc42pcxkgKYtxa4UntmZk1kvyr45Chng81lwXa8puH_CQCGTpAexPAEW5lI0TzgG9dvNYI08yWoNZLAjozUoXi0OJ05xrVqpEMebFKAg8gTMZ_QWWWv92Qci4khRQXU3jg2X1YZq-8-9MhegiVG3K9VodGE2lW982jXqvsQmlBP4ybX509U8k9ujXTOlUVqju7Xo1FabI5EyjbKdXam4xIB_ESTqtemd5_gIKEobB7JYgZFRiOmzIam36ofuFhzzgdDEzX9aM7p9yOjlMrDfGs4_zTp0GyTxLCfpkUwHcBIacMsGDfrcLxRz2nb_QnLchZ1QftIiuow1MZKeYfme_jTKiAGmgc78soSEI7UQTycwoh4-yo75OMNIzXsYISGlh1vBKiYQtXtxoEmkBgRN_2tWtLVP_5fvOusoAbtHHKdo0dDXaaazMTaPs7UHYFapCNSUhLWYhpMwqimo7BTQiE7d_kjA-KxS4xtlsrWQi538QCe0hMKj4-40WikBcbsiQ_NKbbU0TbKGd_Vg0Oj8zxhI4QdKLmNjZ0zt209MDSRO1QOW5JP89PFlSgwlRs-EbqjOCndeg76OrP2O61LRxcAiC4ZOjnrYxRmekTqezGei6bSWKW_ydPImbK-r9BOJRXCJjRJJ7yF9DYnt8m0pG7yxrvnzwCyr87zkda7ubEqTcbqPgsHOZ8tDF4sVUsJVoA3EBGBsZulvF_AGZUhaXJLTEJMAzTspYT4HmkcK_mPpGS6r8m6S6i6y88vfpR0XKbcKy28XIzUhzMtVXbLkSlC52e-fpbuniUoFD8z0KsCUfq4m8b29KBcoB63L_Y_13VRiZba_5CK8oSn_aZuCuZ6P7LZLMCCSjkM6vrczIIwEMUkEFSdWE2JoZBNMWu4WgdFwTjRgr0jGpC0Bspbr2PX5qCuBbrAj4gUgVd3D5cIXRQUm1ePyVtZcMDHwnpZIhb8Kss=\",\"id\":\"rs_68d3bfa6a89c8190bc7c863ae65a299b0267387649cee850\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"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}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.091452458s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 742 + 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_1vGW5LKCp6Fx5JUmqc4MC6ct","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_1vGW5LKCp6Fx5JUmqc4MC6ct","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"}],"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{\"id\":\"gen-1758707626-Pgx62nhcHzlqBIqnwPu9\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707626,\"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. Want the forecast or more details like wind and humidity?\",\"refusal\":null,\"reasoning\":\"**Presenting weather data**\\n\\nI just called the weather tool and got a reading of \\\"40 C\\\". That's straightforward, so I'll present it as: \\\"It's currently about 40°C in Florence, Italy.\\\" I think including the Fahrenheit equivalent would be useful too, so let’s say: \\\"It's about 40°C (104°F).\\\" To keep it clear and concise, I'll ask if the user wants more details like the forecast, humidity, or wind. The tool only gave a temperature, though, so I won't overdo it.\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Presenting weather data**\\n\\nI just called the weather tool and got a reading of \\\"40 C\\\". That's straightforward, so I'll present it as: \\\"It's currently about 40°C in Florence, Italy.\\\" I think including the Fahrenheit equivalent would be useful too, so let’s say: \\\"It's about 40°C (104°F).\\\" To keep it clear and concise, I'll ask if the user wants more details like the forecast, humidity, or wind. The tool only gave a temperature, though, so I won't overdo it.\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo07-x2npZ9nQo6UIWlCzN6MqPb1KV0EJsPmmx5DjExbsFLycrAhXK0N_WYh9wJI83nJx7YTY_3KzEUWWAZ5CCi9_poEhQZnw9Ex8Sb8AzaxrmlVjUSPrFAdhZUJIQy3pYhiePkUIh6GTtnsAHeCnJfn9wOmnIdftlNs5v6XC1ztFTEGFngt2KqF2fPM6ELSesPEl8tPvMLUivK3HVaaJsn8Tg8ESAcLtwGQXjkMtvMuHg2fNOqaRcJI-fHEDRXoETKaSs-UOnb2AqfO2FOqVUNGqvnSxEch-gn1NgL8b17C93g25LfuOGpU2M4dGibAWFM24hbnt-KMQBU_iE-Ia7ZqWVkT32PoECP0i1cekhpu9l7rT8JKA62ok-5rPZl1ah0C_jV0BusoP_JkYjK7tSU5_MRflk4YM5-Cjvk_9A93ZTzvwDexZImysvE4YihD464us7FZyWCTA8hjLV-3nJOHMFRRU8tU_nQRHNhIBkWKSPnnh3VIn4dcYusBWnFW74jjKKJDByIrVwEDTw9xe1nfwAUyiTlUhPpbNvlEBQnWwszIWhSYYosPSagYiplHxANoaxS33miuQO8o_ZaR8N1g72TXrn_veXyvDbP_7GGcuJAgsJHcaVonB_gn1RSPQJeqrSxGPHaowHgSgFvEuvyTlsxRGMN1sVtBnuvQRnnyHIqLWpFQIBhQWps2tvEBLh4NvFEPOS0JDSCIXGtGEOzQrUz7JTxFarBkYVZzDYNoMER7F_9Ejb38FjbDYayEVM1aLKs7gDa8At_X8xS1s_vqrPN5DltUwsFYIO7Cehy7P7EtGzTVOLfurUjFZAnVLCcH6cR2NEB7p-1g_sU5otYVeW9gDaxNETSZj7QwbJvnUrGwmtedflRrM-c3c9zGzl43rP-P-f4Bm35kCOA-4H0WjPuI8Sg9P8i-PdmATg4OqByGhr4RaXbEY441EZ1elRQTh9uJG_ebuBaO3EDacWfre9jpDFz1wcScuUw9eP6QmlfdcSX5E00RHlpoln2GQ5iOOq50-D5pKvKI4lUtNoD4-V2KXJBSmhDS_1d0wXbBI_2C5mfcFjKXrm2Ostd8ZjyNU190YkbivJNwAAh1g8AL1ncuLXn8H6YPv8tSc-mL-EL6TyDZetKSvquIgEsAowIvjMz_yckaDC_AlCE0NKqBwnB1tEoZ1Db1BommyeKTF47LXQKOocidrh6kz6gty3kcHMuBxMV83K1YXrjPS_4-ZhCKyH0-rDhCjbOylCSdgp3pEeg7yHbJSWqSHpH0m_G3waEiiwEnixIYy9a4SZFWl4FVdQwssxNmvnI-waE633ax6mQ7-eIeJQUeVnr_J_zQeIyaVh9tJPrWtjkyiBqPfRqSNiq1ZL9qbejTx_YGZmnvagyagkMVBncMa1XI7sX4BXj0Un7tfJnvMiHbm-h-iUxJRIq5IcUKiS-IqWsjR0cCj2WxFKVQqzEHHIamIeS0m0FbALkVylrsa0gJ7RoRO8WWRcmpZ38v474yvr1YlNNYrx6jsJ_9h3un58wcLMR-kgpGbg5FdKHjFBtJnTDEt3njSj8UKNkOwNRXRoeqymtjEWj3-mF6g6qNahnK9qlUGtqxgiQ3MLlnqM4zInk8vUpMFSAXQnSQzrIMZIz9qqfnzFMo2QYZlySYgBxTrtnz5k4ZgUJTzjB8aue6hQ6RA8Z5mhmZwCAr5ih_Dcuonu1RNowhxzu3ILiPSgn8oIZf1s625deT2MYhhUScaVw_nmdXuEhpkYQmpm7QjkArFu2RQ=\",\"id\":\"rs_68d3bfabe6448190a873f3fae54ba5ea\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":92,\"completion_tokens\":161,\"total_tokens\":253,\"cost\":0.0008625,\"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.000805},\"completion_tokens_details\":{\"reasoning_tokens\":128,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 909.135917ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2caeff58150f5e1cda986ab59a80dcd5788b160d --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 488 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"x-ai/grok-4-fast:free","max_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"}],"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{\"id\":\"gen-1758707428-H3SBjjtbDH0lsiHg6znY\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758707428,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"call_18051373\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"},\"index\":0,\"type\":\"function\"}]}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":322,\"completion_tokens\":266,\"total_tokens\":588,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":266,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":240,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 392.3505ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 708 + 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_18051373","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_18051373","role":"tool"}],"model":"x-ai/grok-4-fast:free","max_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"}],"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-1758707431-Gk1xvwMhvunb2oUNN73I\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758707431,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The current weather in Florence, Italy, is 40°C. It looks like a hot day—stay hydrated! If you need more details (like forecast or conditions), let me know.\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":601,\"completion_tokens\":82,\"total_tokens\":683,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":265,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":44,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 452.725708ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1.yaml new file mode 100644 index 0000000000000000000000000000000000000000..35e6b33457261ce8236659a5ff2f8be4048895b4 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 488 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"x-ai/grok-code-fast-1","max_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"}],"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-1758707371-cPV6GTO59HkYbf95oMJY\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758707371,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"The user asked: \\\"What's the weather in Florence,Italy?\\\"\\n\",\"tool_calls\":[{\"id\":\"call_85760904\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence,Italy\\\"}\"},\"index\":0,\"type\":\"function\"}],\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The user asked: \\\"What's the weather in Florence,Italy?\\\"\\n\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":390,\"completion_tokens\":94,\"total_tokens\":484,\"cost\":0.0001614,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":320,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000204,\"upstream_inference_completions_cost\":0.000141},\"completion_tokens_details\":{\"reasoning_tokens\":68,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 806.625875ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 707 + 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_85760904","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_85760904","role":"tool"}],"model":"x-ai/grok-code-fast-1","max_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"}],"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{\"id\":\"gen-1758707372-50nGWRc06IWHZIlkmcPV\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758707372,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The current temperature in Florence, Italy is 40°C. If you need more details like humidity, wind, or a forecast, let me know!\",\"refusal\":null,\"reasoning\":\"The tool returned: \\\"40 C\\\"\\n\\n\\n## Interpreting weather data \\n- The data provided indicates \\\"40 C,\\\" likely referring to the current temperature. \\n- This appears to be the temperature in Florence, Italy, at 40 degrees Celsius.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The tool returned: \\\"40 C\\\"\\n\\n\\n## Interpreting weather data \\n- The data provided indicates \\\"40 C,\\\" likely referring to the current temperature. \\n- This appears to be the temperature in Florence, Italy, at 40 degrees Celsius.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":497,\"completion_tokens\":199,\"total_tokens\":696,\"cost\":0.00031726,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":448,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00001876,\"upstream_inference_completions_cost\":0.0002985},\"completion_tokens_details\":{\"reasoning_tokens\":169,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 844.026ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6ed3039189299dc5f9de1bac24e7164b80f63f68 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 490 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_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"}],"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{\"id\":\"gen-1758707336-4qerUfTDXw0RnH1X7ajO\",\"provider\":\"Fireworks\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758707336,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll get the weather information for Florence, Italy for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"functions.weather:0\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":97,\"completion_tokens\":33,\"total_tokens\":130,\"cost\":0.0001407,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000582,\"upstream_inference_completions_cost\":0.0000825},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 975.89025ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 796 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the weather information for Florence, Italy for you.","tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"functions.weather:0","role":"tool"}],"model":"moonshotai/kimi-k2-0905","max_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"}],"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-1758707337-XULpAKVFAG3sQ4NNFOwY\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758707337,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The weather in Florence, Italy is currently 40°C (104°F). That's quite hot! Make sure to stay hydrated and wear sunscreen if you're planning to be outdoors.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":143,\"completion_tokens\":34,\"total_tokens\":177,\"cost\":0.0001395,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000715,\"upstream_inference_completions_cost\":0.000068},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 607.55975ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..26fa43ad966b61d99563c95016f9dcd264cfb872 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4.yaml @@ -0,0 +1,117 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 546 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"anthropic/claude-sonnet-4","max_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"}],"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-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll get the weather information","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":" for Florence, Italy for you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01FJpf1q3PXfgS1vdBRJZWZm","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\": "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\"Florence,I"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"taly\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]} + + data: {"id":"gen-1758707401-Nfc0zvrvIfR9OYJchBzT","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707401,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":394,"completion_tokens":67,"total_tokens":461,"cost":0.002187,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.001182,"upstream_inference_completions_cost":0.001005},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 2.090023541s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 884 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the weather information for Florence, Italy for you.","tool_calls":[{"id":"toolu_vrtx_01FJpf1q3PXfgS1vdBRJZWZm","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_01FJpf1q3PXfgS1vdBRJZWZm","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_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"}],"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-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":" current weather in Florence, Italy is 40","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C (104°F). That","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s quite hot! Make","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure to stay hydrated and seek","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":" shade if you're planning to be out","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":"doors.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758707404-Mw0q6npBk7ex2okCJiQN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758707404,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":476,"completion_tokens":43,"total_tokens":519,"cost":0.002073,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.001428,"upstream_inference_completions_cost":0.000645},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 2.122933083s diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_deepseek-chat-v3.1-free.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_deepseek-chat-v3.1-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..abce763d52b2547dc072e015c054f3ddb2db3bcb --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_deepseek-chat-v3.1-free.yaml @@ -0,0 +1,115 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 553 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"deepseek/deepseek-chat-v3.1:free","max_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"}],"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-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll get","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":" the weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":" information for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_d607","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]} + + data: {"id":"gen-1758707554-2G2q7ivdy9HCggb2g4Eo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707554,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":160,"completion_tokens":28,"total_tokens":188,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 4.474706084s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 833 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the weather information for Florence, Italy for you.","tool_calls":[{"id":"call_d607","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_d607","role":"tool"}],"model":"deepseek/deepseek-chat-v3.1:free","max_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"}],"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-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":"40°","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":"C.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":" It's","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite warm","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":" there!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758707570-bO6RsxkW56zG4vT0S7Hy","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758707570,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":193,"completion_tokens":20,"total_tokens":213,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 3.8388925s diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..de34fd52cdaeefe42195a9b2ef77681cb9828700 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash.yaml @@ -0,0 +1,75 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 548 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"google/gemini-2.0-flash-001","max_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"}],"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-1758707455-wjQnPEzsDZwH5WRL7s6m","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707455,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_JMzzGHaVOoyMmvq1SWN2","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707455-wjQnPEzsDZwH5WRL7s6m","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707455,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":28,"completion_tokens":3,"total_tokens":31,"cost":0.000004,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000028,"upstream_inference_completions_cost":0.0000012},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 621.308333ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 805 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"tool_0_weather_JMzzGHaVOoyMmvq1SWN2","function":{"arguments":"{\"location\":\"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_JMzzGHaVOoyMmvq1SWN2","role":"tool"}],"model":"google/gemini-2.0-flash-001","max_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"}],"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-1758707455-ZFcpXWaesT12zE42xJ8P","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707455,"choices":[{"index":0,"delta":{"role":"assistant","content":"The weather in Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707455-ZFcpXWaesT12zE42xJ8P","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707455,"choices":[{"index":0,"delta":{"role":"assistant","content":" is 40 C.\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707455-ZFcpXWaesT12zE42xJ8P","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758707455,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":54,"completion_tokens":11,"total_tokens":65,"cost":0.0000147,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000081,"upstream_inference_completions_cost":0.0000066},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.3302435s diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f98ef85963d0a5de5d8893dfbf40ba8e7f4c9e4b --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash.yaml @@ -0,0 +1,75 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 544 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"google/gemini-2.5-flash","max_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"}],"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-1758707445-LJidJIg5vyINwvjAkfnF","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707446,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_u1yhyal4l4jR07AfzPLZ","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707445-LJidJIg5vyINwvjAkfnF","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707446,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":28,"completion_tokens":5,"total_tokens":33,"cost":0.0000209,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000084,"upstream_inference_completions_cost":0.0000125},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 806.809584ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 807 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"tool_0_weather_u1yhyal4l4jR07AfzPLZ","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_u1yhyal4l4jR07AfzPLZ","role":"tool"}],"model":"google/gemini-2.5-flash","max_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"}],"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-1758707446-pQIqXolCXpZTPfD6htxF","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707446,"choices":[{"index":0,"delta":{"role":"assistant","content":"The weather in Florence,Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707446-pQIqXolCXpZTPfD6htxF","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707446,"choices":[{"index":0,"delta":{"role":"assistant","content":" is 40 C.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]} + + data: {"id":"gen-1758707446-pQIqXolCXpZTPfD6htxF","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758707446,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":59,"completion_tokens":12,"total_tokens":71,"cost":0.0000477,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000177,"upstream_inference_completions_cost":0.00003},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 902.870834ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a9395156c04395877390f4f554361841bf80244e --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5.yaml @@ -0,0 +1,307 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 544 + 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"}],"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo07-19hFz_RM1q3MY5KTe62nJE3OA4v3koKScb8hZdACn9MmJIRUzDUxaNn133gzFI9nVKtL9sBUnD0O6fMEPXHioi2XXL29fQ6CqSYfsbvF-UCd5t69nZzmRf59kyFY7qlNN_vIbq6-KrVrfz6RvBoQ-QvO2E-2PDyvejlgY1cgEJy9fodpGfpeDaq5PV85EUvzUU7GTRiZiJzfJU3zDp-z24OcVPlQ4hXiClbxR8VJsXL3tvaLleLR6JYbXOWO69mw4cQaSQJl1tFdWu4mF2obXBEWnuDdWLLeNqK4173shdgZA3xFkXf4btUeHcT4ASHytaasP3EvIHDJvtDylUQRO-xgCPzsr4XorcZJcmfFBn7cR0qUTGn6OIBAX4MnobO0LRcJPbj1kOfdsqyz3_n5rL_wYrIjabV4KwFs7lkO_F2Nj5UEvotFlak4IlKT8y0LUttBbcohFB6hQ0OM4hD4yIpVbQxGDD2IwquLqiRijo1QB3Syzezj2dRGNbSILCSfq6A5ijIzL0upDHJpXiX5_WLm_2NLMbHfPVC-goNb1mlb0mUU-hs-Wek_aAJ_HYBP8Tm5CGaz-_6Gw8Yrh66LjX1fSdiF6f4tdISuuzVeCe2GL8yJ5IANcSDk2MMvr1onFU5LdxPuY2H8yJ5VRCGceWaoVF6D0jQKIQ_raoNL0FRTZaNnheV-W4E8EL4u-E0423IrdE6qR1mBb0Ad56oEe4w_t2yDa8tBpPgmBByAp6_OD1cPuMfSQcp0yx7Cz-q2XENF8UWmkk8A-YDHeZyYM5xc5G7PcIMJ9uaplvFwrenYCwVLwibvZy5xFCovsFqxOIy0fhyxDAMvHbLo8G_yhkchXisaBfVjLH9f7o7QbFLsSpWtJ5dZ7oqlE5wNQ1F_qomr9eMeyZoQ-iUGz5la2saZK7LSKgMKHMGlKGgjiu-vWVKI0t0WhYK02UQnolQQQBj8D4AiX71sM_5EzaVKJ7NqpMFmYUm9DGUWvUCJQgybMrv63LEtpvEn_ztIuo7Poye3dCqkwPCmCwqnzwwgYL03uWYwce9gkQcj9f6UHX81czXQK-KQU4KvsIgSpE2v8fO03yOXbxT0JJ92PtCVhkzmgo9cUPn1-F026YAR3pn5RChwnceIQUiRgZAtg-1fxOESp_WwrocqVX2JFNqgSrpQgTT3QC7dxdgHpKWa-c-QSSJNBG-vLj9vI_5thtaPRFAvpwvVBbdpF4Ne5GreG7v8fV2kCUIk3yX-HIfYxrOLRhHm0VD1y8ZozluX6zrGZMW1FeQxQkAFmoXRqrIkP5WM1_01ZKKVGTDuX419rY84bXPszd7qzYhrx3PJtP4vUmkarpgTn2dBOVt98MrSUKuY0WmfrSU3_Ro-iBT2mDDZdQB8Y6hGOyHo0WFqBLHykNr2dedmKljvUFYhtyqTwwNypo1UcsGNGQ3VG8JbZ60xuef35tJbQpN0WlO6cy9xUHe68W95iZGdy7AtxhSv2zTbMNFTgIbzj35a5cwYGaOY-1hOo_BS7aLOOMy3ETmFppkRub5l3ahSaLEyHIAlIdQ==","id":"rs_68d3bfb336908193b64abd6772fa77b003ff4ae54596b9ee","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_Ga1svzLmnZogzZLZZzZasJeE","index":1,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707634-LQZ59s25vQL6YefKcTmR","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707634,"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: 898.414834ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 796 + 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_Ga1svzLmnZogzZLZZzZasJeE","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_Ga1svzLmnZogzZLZZzZasJeE","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"}],"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Clar","reasoning_details":[{"type":"reasoning.summary","summary":"**Clar","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ifying","reasoning_details":[{"type":"reasoning.summary","summary":"ifying","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" reporting","reasoning_details":[{"type":"reasoning.summary","summary":" reporting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nIt","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nIt","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" helpful","reasoning_details":[{"type":"reasoning.summary","summary":" helpful","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" communicate","reasoning_details":[{"type":"reasoning.summary","summary":" communicate","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"currently","reasoning_details":[{"type":"reasoning.summary","summary":"currently","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" shows","reasoning_details":[{"type":"reasoning.summary","summary":" shows","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" exactly","reasoning_details":[{"type":"reasoning.summary","summary":" exactly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" currently","reasoning_details":[{"type":"reasoning.summary","summary":" currently","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearer","reasoning_details":[{"type":"reasoning.summary","summary":" clearer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" picture","reasoning_details":[{"type":"reasoning.summary","summary":" picture","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Al","reasoning_details":[{"type":"reasoning.summary","summary":" Al","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'm","reasoning_details":[{"type":"reasoning.summary","summary":" I'm","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ready","reasoning_details":[{"type":"reasoning.summary","summary":" ready","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" format","reasoning_details":[{"type":"reasoning.summary","summary":" format","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" understandable","reasoning_details":[{"type":"reasoning.summary","summary":" understandable","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"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-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo07_B8zgLEUpTVlcnXCMWGwftRMgZoKkL0fBPBiCkCeMJu1rVlSkWCtjTWTGmIb2ern0uAik-GYeS9VpaMW-ecoQi5t4apOcWW_D1H7iZ7HRAhkxf3yRPSmVmA7s-xE6_TT1iFAF6x7PZ2-iA7grw61q-u4vtJVMW_HdkMbZcQXg2_FOmuZVWil9lt1dFQWbDVY6WivHNO8nb1GuQHWXon7WsgsWH8g4DdQOBY05ipC9F2rYIFBs1LorGOGMSNmunOQEtXU8pf23yxAZAXRfR91AmN6Mupl7J9TOdZVdHcv1OUhy_dZ7T4Lyni31jgHxWMR5t80YXyTekelNMO3201yC4jrtL1fhAjtjoUKyArkbaBneuMLZbnSYzR0K0BqrgWcY3rqy99nnCRPGH46yLD0S_6aDje1ObFnl_fuO5WcSd2bYupRJPxRBNLWb-f9jaiOsWUfA8RYA_tZJae4TL93Uz6NHtCP8wjnvyxPs1qVtyU2tFquN0mAFg197qlBNypLU2lfoQey5FdS_dInoZIOdOrss48Hn-QzlDcm8uXTz9pj4scSYOwjjI4Lmj-V6qX5GPa-yM9UJ3ija8b0po1QMXJiNBMOHxk4G95ylzm8uIHywoyqq1FKtc5EsbSiITbF1vcrIWT96ybV8uI4q3Of-4sVzmpDP63pIz5XviXVsV3g2NtdE4ZDA9XQBFPZRLE3cH_KivTDUPXGv86Can_MHTK8V00Tyn1A_UQrnwhhw2TPlRjnlhiZRzGJoCrbX1tfX7p0fU3ZGWpijBCoHMD7940ylj8WFTHXjDiONLArLetX4ToVk64w8ETZzpm8-qjdJYsmcvgXae3Q9dTnR3PeUDa5XZo43v2RUo195-zpgT7YKGtRT2GRG0XFxOf3X7YWSUnJOjgs3yzwxwIFjySsRm3ArGGzNq2GLnQjfJ-wMIHrd6rPiBkHlnJg890B4hDdYVLtDQXdqah1HK11_09BjRXscwzKQ4F7qpHlkrgT7vTz6NlfZNDJ1tibnf7e4ZinA0qjsgnv9KYrFkqr-dZ00IbFXsR6Hc3i5aa-hb5eOa8zJegGjzsVoGZ0b34O0djuyASePAWbcvtFIQMBsSeVchCamhktn4j9jk-jppQiFTX3SdKvt6yPxfFx3Ln4AfiDnf1JYKKfPvyjZRWcoCIaNFLjG0XOpx7LsiwndxUL3Um5Dut2xl7t2dqogLFv4Kr8AlQ09dpod-Eez0kzgg_XQGWQYF4ZjQE9_a8qJcbxS7hdSdnNes9UxqxdscEvcvJDTRxKMHqOWTPR9T3Yxq9P_shAxZOMl-ygN9oAe7iXLg8xQmF5hPgnIqY9YQCADbBPpy55KoykbdAEmrrB2Y5_rBGCbotJSJjyGgCXBvVMME0qMgednS46b8NnEz2z_g5b2Hx4jra88A_Z5gXMw7jCsiMcDZAjOHh14VUWSr8nHZGYyOESZG_0DUXbwDuCnh1Ho2_QnkCxtdPGBnP6JjSkvEIpIQmj8y_vCrRuyR4zyxGu0bM_NaZwVxyEJfz5a2HfymdyB-mtsg-sknfTTdg8jXDGOjbLh8nWAhKYq0iCYIF4LiVnd40ErabwLNiiAcs35dsHvE6cObwiyGO3yc6X2GFvbt5XVVGzX6JhTSu1ZkBzAI9uAq0QVxufLQoG4ETCulmYNgXox8dRZebJ-9YdAaPvCrElpv167iyNGe_tU0Ij26OmygLyzLzIAtM5YYJRv8bzhY6akhRXzl1ap4pMhpZwP5zY_H3w0inZhaB0ubNGVAfX4PiQnqDKVZXNn1XUwAGRku8HE9tCfCAme2YiPuclCvgvHePYvBwI4ZpTqPkXwTzQUCA_q3fvSON0x5OlDQpnNRLKw90tTJD8Co9brSb56Ai4MKm3V_SD4phBFAzXqk4VriCMogCtaMCZmKEZBNB0Nx5czY18LsOSuY5zSoAIJ730eec1PP01ZTc45UBHlYdh55VljSNCoiCNhrbVy3a0-VKIpjndJStciTikYjJFAmQ9sWMk_Y_lJEy8NuqxkR1RWphPT8W6-ajZ7poTXJeZyffpOhLC2kZUrwItmPG3FVIyfCg_13BAqDQuywsqAXnFoA-e_Eskgpn2BtG7nlkEvKFKDGFE2gGAJaJ7pFYCIsVo_52bz0FPrkJsiVLqGtw_iGmDv6dchJ6vZf4_HgQzBaP_krB7eQuWpPRCwrRvjbjWuXLPaHp3MIXjnBODexILePib-kk0cJP-Iq4EU9uPonzWtgKZi-DMhFDVNLDwoNTLfOYqQaFEQSHHL6awcU9DnE_w5vOTp6TioQt_1XI1fA-D4y4XQym0xvYvReTA==","id":"rs_68d3bfb8a9d48190b1e4253f6c7ff320","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" around"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" Would"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" like"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" a"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" short"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecast"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" or"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" tips"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" dealing"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" with"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":" heat"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":"?"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758707638-oC8rbeNGeS5iNHL37Szt","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707638,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":92,"completion_tokens":228,"total_tokens":320,"cost":0.0011975,"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.00114},"completion_tokens_details":{"reasoning_tokens":192,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.331511542s diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d554aeaba48d6649742abf3f13689f0d9d8a965b --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free.yaml @@ -0,0 +1,729 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 542 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"x-ai/grok-4-fast:free","max_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"}],"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-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_90966614","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"index":0,"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707433-EfTS1KZ7C6hrclcxYgcb","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707433,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":322,"completion_tokens":269,"total_tokens":591,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":321,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":243,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 377.46775ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 762 + 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_90966614","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_90966614","role":"tool"}],"model":"x-ai/grok-4-fast:free","max_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"}],"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-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"40","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"104","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":").","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" If","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" need","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" details","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" like","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecasts","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" or","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" conditions","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" let","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" me","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":" know","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_9362061f30"} + + data: {"id":"gen-1758707435-f3O2GpC3D1Pe5RpdfLn1","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758707435,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":604,"completion_tokens":84,"total_tokens":688,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":592,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":52,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 311.512583ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1.yaml new file mode 100644 index 0000000000000000000000000000000000000000..aac67d630ee5e94dd48b97d83903cb15174e4cb7 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1.yaml @@ -0,0 +1,379 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 542 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"x-ai/grok-code-fast-1","max_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"}],"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-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.text","text":" asked","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.text","text":" need","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.text","text":" tool","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.text","text":" that","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_83430368","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"index":0,"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707375-PydxJYaqw8uVGgTtoyzb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707375,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":390,"completion_tokens":130,"total_tokens":520,"cost":0.00020388,"is_byok":false,"prompt_tokens_details":{"cached_tokens":384,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00000888,"upstream_inference_completions_cost":0.000195},"completion_tokens_details":{"reasoning_tokens":104,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 406.194458ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 761 + 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_83430368","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_83430368","role":"tool"}],"model":"x-ai/grok-code-fast-1","max_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"}],"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-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.text","text":" tool","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" returned","reasoning_details":[{"type":"reasoning.text","text":" returned","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"40","reasoning_details":[{"type":"reasoning.text","text":"40","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" C","reasoning_details":[{"type":"reasoning.text","text":" C","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"40","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"gen-1758707376-hoB9RTgCmjS41NuTPmGH","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707376,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":533,"completion_tokens":48,"total_tokens":581,"cost":0.00008644,"is_byok":false,"prompt_tokens_details":{"cached_tokens":512,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00001444,"upstream_inference_completions_cost":0.000072},"completion_tokens_details":{"reasoning_tokens":36,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 484.715417ms diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0fafdd3decc02d1453dde140e8e68601c908bf38 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2.yaml @@ -0,0 +1,189 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 544 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_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"}],"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-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"weather:0","type":"function","function":{"name":"weather"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"{\""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"location"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":" \""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"Fl"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"ore"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"nce"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":","},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"Italy"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"\"}"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707339-ZNfEpmo7a24E3TN0Yga9","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707339,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":76,"completion_tokens":31,"total_tokens":107,"cost":0.0001231,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000456,"upstream_inference_completions_cost":0.0000775},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 2.03776975s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 819 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll check the weather in Florence, Italy for you.","tool_calls":[{"id":"weather:0","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"weather:0","role":"tool"}],"model":"moonshotai/kimi-k2-0905","max_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"}],"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-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":")."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" That's"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" Make"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" wear"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" sunscreen"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" if"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" you're"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" going"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" be"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":" outside"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ef28f882"} + + data: {"id":"gen-1758707343-zVHvKKVwNDkxXJj6MET8","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758707343,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":126,"completion_tokens":35,"total_tokens":161,"cost":0.0001631,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000756,"upstream_inference_completions_cost":0.0000875},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.998385s