diff --git a/providertests/common_test.go b/providertests/common_test.go
index 4430a194416a52105c9f62a99743076700107df2..898e537e9d98ea244c6180e87881405a59f7b21b 100644
--- a/providertests/common_test.go
+++ b/providertests/common_test.go
@@ -94,6 +94,9 @@ func testTool(t *testing.T, pair builderPair) {
toolCalls = append(toolCalls, content.(ai.ToolCallContent))
}
}
+ for _, tc := range toolCalls {
+ require.False(t, tc.Invalid)
+ }
require.Len(t, toolCalls, 1)
require.Equal(t, toolCalls[0].ToolName, "weather")
@@ -178,6 +181,9 @@ func testMultiTool(t *testing.T, pair builderPair) {
toolCalls = append(toolCalls, content.(ai.ToolCallContent))
}
}
+ for _, tc := range toolCalls {
+ require.False(t, tc.Invalid)
+ }
require.Len(t, toolCalls, 2)
finalText := result.Response.Content.Text()
@@ -229,7 +235,7 @@ func testMultiTool(t *testing.T, pair builderPair) {
func testThinking(t *testing.T, pairs []builderPair, thinkChecks func(*testing.T, *ai.AgentResult)) {
for _, pair := range pairs {
- t.Run(pair.name, func(t *testing.T) {
+ t.Run("thinking-"+pair.name, func(t *testing.T) {
r := newRecorder(t)
languageModel, err := pair.builder(r)
diff --git a/providertests/openrouter_test.go b/providertests/openrouter_test.go
index 0ccaa44257d50444e5fc232268734862ed944d32..dc2383fd927fd8db45bbc4e09e1564a138240430 100644
--- a/providertests/openrouter_test.go
+++ b/providertests/openrouter_test.go
@@ -7,198 +7,117 @@ import (
"github.com/charmbracelet/fantasy/ai"
"github.com/charmbracelet/fantasy/openrouter"
+ "github.com/stretchr/testify/require"
"gopkg.in/dnaeon/go-vcr.v4/pkg/recorder"
)
-type openrouterModel struct {
- name string
- builderFunc builderFunc
- providers []string
-}
-
func TestOpenRouterCommon(t *testing.T) {
- var pairs []builderPair
- models := []openrouterModel{
- openrouterKimiK2(),
- openrouterGrokCodeFast1(),
- openrouterClaudeSonnet4(),
- openrouterGrok4FastFree(),
- openrouterGemini25Flash(),
- openrouterGemini20Flash(),
- openrouterDeepseekV31Free(),
- openrouterGpt5(),
+ testCommon(t, []builderPair{
+ {"kimi-k2", builderOpenRouterKimiK2, nil},
+ {"grok-code-fast-1", builderOpenRouterGrokCodeFast1, nil},
+ {"claude-sonnet-4", builderOpenRouterClaudeSonnet4, nil},
+ {"grok-4-fast-free", builderOpenRouterGrok4FastFree, nil},
+ {"gemini-2.5-flash", builderOpenRouterGemini25Flash, nil},
+ {"gemini-2.0-flash", builderOpenRouterGemini20Flash, nil},
+ {"deepseek-chat-v3.1-free", builderOpenRouterDeepseekV31Free, nil},
+ {"gpt-5", builderOpenRouterGPT5, nil},
+ {"glm-4.5", builderOpenRouterGLM45, nil},
+ })
+ opts := ai.ProviderOptions{
+ openrouter.Name: &openrouter.ProviderOptions{
+ Reasoning: &openrouter.ReasoningOptions{
+ Effort: openrouter.ReasoningEffortOption(openrouter.ReasoningEffortMedium),
+ },
+ },
}
+ testThinking(t, []builderPair{
+ {"gpt-5", builderOpenRouterGPT5, opts},
+ {"glm-4.5", builderOpenRouterGLM45, opts},
+ }, testOpenrouterThinking)
+}
- 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,
- builderPair{
- model.name + "_" + provider,
- model.builderFunc,
- ai.ProviderOptions{
- openrouter.Name: &openrouter.ProviderOptions{
- Provider: &openrouter.Provider{
- Only: []string{provider},
- },
- },
- },
- })
+func testOpenrouterThinking(t *testing.T, result *ai.AgentResult) {
+ reasoningContentCount := 0
+ for _, step := range result.Steps {
+ for _, msg := range step.Messages {
+ for _, content := range msg.Content {
+ if content.GetType() == ai.ContentTypeReasoning {
+ reasoningContentCount += 1
+ }
+ }
}
}
+ require.Greater(t, reasoningContentCount, 0)
+}
- testCommon(t, pairs)
+func builderOpenRouterKimiK2(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("moonshotai/kimi-k2-0905")
}
-func openrouterKimiK2() openrouterModel {
- return openrouterModel{
- name: "kimi-k2",
- builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) {
- provider := openrouter.New(
- openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
- openrouter.WithHTTPClient(&http.Client{Transport: r}),
- )
- return provider.LanguageModel("moonshotai/kimi-k2-0905")
- },
- providers: []string{
- "deepinfra",
- "siliconflow",
- "fireworks",
- "moonshotai",
- "novita",
- "baseten",
- "together",
- "groq",
- "moonshotai/turbo",
- "wandb",
- },
- }
+func builderOpenRouterGrokCodeFast1(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("x-ai/grok-code-fast-1")
}
-func openrouterGrokCodeFast1() openrouterModel {
- return openrouterModel{
- name: "grok-code-fast-1",
- builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) {
- provider := openrouter.New(
- openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
- openrouter.WithHTTPClient(&http.Client{Transport: r}),
- )
- return provider.LanguageModel("x-ai/grok-code-fast-1")
- },
- providers: []string{
- "xai",
- },
- }
+func builderOpenRouterGrok4FastFree(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("x-ai/grok-4-fast:free")
}
-func openrouterGrok4FastFree() openrouterModel {
- return openrouterModel{
- name: "grok-4-fast-free",
- builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) {
- provider := openrouter.New(
- openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
- openrouter.WithHTTPClient(&http.Client{Transport: r}),
- )
- return provider.LanguageModel("x-ai/grok-4-fast:free")
- },
- providers: []string{
- "xai",
- },
- }
+func builderOpenRouterGemini25Flash(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("google/gemini-2.5-flash")
}
-func openrouterGemini25Flash() openrouterModel {
- return openrouterModel{
- name: "gemini-2.5-flash",
- builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) {
- provider := openrouter.New(
- openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
- openrouter.WithHTTPClient(&http.Client{Transport: r}),
- )
- return provider.LanguageModel("google/gemini-2.5-flash")
- },
- providers: []string{
- "google-vertex/global",
- "google-ai-studio",
- "google-vertex",
- },
- }
+func builderOpenRouterGemini20Flash(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("google/gemini-2.0-flash-001")
}
-func openrouterGemini20Flash() openrouterModel {
- return openrouterModel{
- name: "gemini-2.0-flash",
- builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) {
- provider := openrouter.New(
- openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
- openrouter.WithHTTPClient(&http.Client{Transport: r}),
- )
- return provider.LanguageModel("google/gemini-2.0-flash-001")
- },
- providers: []string{
- "google-ai-studio",
- "google-vertex",
- },
- }
+func builderOpenRouterDeepseekV31Free(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("deepseek/deepseek-chat-v3.1:free")
}
-func openrouterDeepseekV31Free() openrouterModel {
- return openrouterModel{
- name: "deepseek-chat-v3.1-free",
- builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) {
- provider := openrouter.New(
- openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
- openrouter.WithHTTPClient(&http.Client{Transport: r}),
- )
- return provider.LanguageModel("deepseek/deepseek-chat-v3.1:free")
- },
- providers: []string{
- "deepinfra",
- },
- }
+func builderOpenRouterClaudeSonnet4(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("anthropic/claude-sonnet-4")
}
-func openrouterClaudeSonnet4() openrouterModel {
- return openrouterModel{
- name: "claude-sonnet-4",
- builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) {
- provider := openrouter.New(
- openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
- openrouter.WithHTTPClient(&http.Client{Transport: r}),
- )
- return provider.LanguageModel("anthropic/claude-sonnet-4")
- },
- providers: []string{
- "google-vertex",
- "google-vertex/global",
- "anthropic",
- "google-vertex/europe",
- "amazon-bedrock",
- },
- }
+func builderOpenRouterGPT5(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("openai/gpt-5")
}
-func openrouterGpt5() openrouterModel {
- return openrouterModel{
- name: "gpt-5",
- builderFunc: func(r *recorder.Recorder) (ai.LanguageModel, error) {
- provider := openrouter.New(
- openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
- openrouter.WithHTTPClient(&http.Client{Transport: r}),
- )
- return provider.LanguageModel("openai/gpt-5")
- },
- providers: []string{
- "openai",
- "azure",
- },
- }
+func builderOpenRouterGLM45(r *recorder.Recorder) (ai.LanguageModel, error) {
+ provider := openrouter.New(
+ openrouter.WithAPIKey(os.Getenv("OPENROUTER_API_KEY")),
+ openrouter.WithHTTPClient(&http.Client{Transport: r}),
+ )
+ return provider.LanguageModel("z-ai/glm-4.5")
}
diff --git a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4.yaml b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4.yaml
deleted file mode 100644
index 420822b25097121c733989c9b697c26f5908761a..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 548
- host: ""
- body: '{"max_tokens":8096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","type":"text"}],"thinking":{"budget_tokens":4000,"type":"enabled"},"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - Anthropic/Go 1.10.0
- url: https://api.anthropic.com/v1/messages
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: '{"id":"msg_01UYqHuA4Tt7HtZBmSzncLKW","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"thinking","thinking":"The user is asking for weather information for Florence, Italy. I have access to a weather function that takes a location parameter. The location is clearly specified as \"Florence, Italy\". I have all the required parameters to make this function call.","signature":"EqQDCkYIBxgCKkA1dDHptJ2iKtWZ9sMIIJPkgaj5W1miVnddSy3skrvAjGIHqew6UE71EDjqHCF5WYgEVd4SvysajvVTcguSMxHMEgy36dF4ihE6WIc/asUaDPRSkmjhgGgrEt7hKiIwDUKY8xyfDCTKHRPA6Kw77cnWCWDlnSX3pXfowzysv7VILx33hTNRBKROj0AiDhbEKosCj+Lqk0PWtRPRv1GxAWsbXqXBPDVL9DrFTKJfqRL2xkISMYbWCGEysel73WMkBaUPGzEU39FXQjCSu7BxhIorpBozrdNyr430+yKyPAWBn9XiU0bq6KAYXwEaTlRWVbhnIPZal4TeCITOQ10DcGLhAObBbo+tMTG9F1G1ALWjxfFuVq3cPqXaquTqhrIBPxGPHX+GSA2665mIrGqYNv3J2e6dpCfr5ZBmS8DWdRIshsMboxoLx7yAIuErjiAIHnFb3GEBZJ2igLbCnBkEULFQ2j87fZhg3yDcXqbZ3ILr1iK32hEoREuX4vsyfUfKi8KfPjf6vYV2pdhWGiu8ASD5iViW1Xpl0fx0vuk9GAE="},{"type":"tool_use","id":"toolu_01EinYCf2KLtnmBLsLi8UHUd","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":423,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":110,"service_tier":"standard"}}'
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 4.5487575s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1705
- host: ""
- body: '{"max_tokens":8096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EqQDCkYIBxgCKkA1dDHptJ2iKtWZ9sMIIJPkgaj5W1miVnddSy3skrvAjGIHqew6UE71EDjqHCF5WYgEVd4SvysajvVTcguSMxHMEgy36dF4ihE6WIc/asUaDPRSkmjhgGgrEt7hKiIwDUKY8xyfDCTKHRPA6Kw77cnWCWDlnSX3pXfowzysv7VILx33hTNRBKROj0AiDhbEKosCj+Lqk0PWtRPRv1GxAWsbXqXBPDVL9DrFTKJfqRL2xkISMYbWCGEysel73WMkBaUPGzEU39FXQjCSu7BxhIorpBozrdNyr430+yKyPAWBn9XiU0bq6KAYXwEaTlRWVbhnIPZal4TeCITOQ10DcGLhAObBbo+tMTG9F1G1ALWjxfFuVq3cPqXaquTqhrIBPxGPHX+GSA2665mIrGqYNv3J2e6dpCfr5ZBmS8DWdRIshsMboxoLx7yAIuErjiAIHnFb3GEBZJ2igLbCnBkEULFQ2j87fZhg3yDcXqbZ3ILr1iK32hEoREuX4vsyfUfKi8KfPjf6vYV2pdhWGiu8ASD5iViW1Xpl0fx0vuk9GAE=","thinking":"The user is asking for weather information for Florence, Italy. I have access to a weather function that takes a location parameter. The location is clearly specified as \"Florence, Italy\". I have all the required parameters to make this function call.","type":"thinking"},{"id":"toolu_01EinYCf2KLtnmBLsLi8UHUd","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01EinYCf2KLtnmBLsLi8UHUd","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","type":"text"}],"thinking":{"budget_tokens":4000,"type":"enabled"},"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - Anthropic/Go 1.10.0
- url: https://api.anthropic.com/v1/messages
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: '{"id":"msg_01HVqNJfVm6BJirBoqgAdpkm","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"text","text":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade if you''re planning to be outdoors."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":548,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":43,"service_tier":"standard"}}'
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 2.249631625s
diff --git a/providertests/testdata/TestAnthropicCommon/thinking-claude-sonnet-4.yaml b/providertests/testdata/TestAnthropicCommon/thinking-claude-sonnet-4.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..99c52111bd0dec252a68447011c47cc2da094d9e
--- /dev/null
+++ b/providertests/testdata/TestAnthropicCommon/thinking-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: 548
+ host: ""
+ body: '{"max_tokens":8096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","type":"text"}],"thinking":{"budget_tokens":4000,"type":"enabled"},"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Anthropic/Go 1.10.0
+ url: https://api.anthropic.com/v1/messages
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"msg_014ro9Ta21FzoNNbUnLGNZnd","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"thinking","thinking":"The user is asking for weather information for Florence, Italy. I have access to a weather function that requires a location parameter. The user has provided \"Florence, Italy\" as the location. I should use this exact location in my function call.","signature":"Ep8DCkYIBxgCKkAOBMGY1BYb72lMWlJDTXe8tKCTd48uBO4sqOMYLqI2WZD8DaseV03tSVsBObecDyrb2Omtagha8kh4UFnRazPoEgzPGSZY4wXCWYxr5aIaDDwh07fdcnwhnIqTaiIw31yCF1OvusyyXjKj72wLYbpkkJcbieCGBziRhXcYsxIUKf0+u3NK8Hbjx8es7RORKoYCUWgbBdiDoPf5v0Da4uuTEOZ7KoNRtd7oARxtdt7+rNRHDK3rQBR+5iJ6mATY8FU8T5I5mbtIr40kA418VoiMW3sMxheNaEP54Lu91s41BsovV1jQeHF53LBmpvoTM/mEI4bR6PnIPp5186zEBpbShHTeoPfdrMEoAYsr8r5KvbQjdQzOq9Rf3ozqBsn8zpQTy1vj00e2r0G+ryl36luG2rnqkzNw8ns+wIllRTGcT1kriXoZkq627V8eW98YgtAkB6s2JRC4EP5pMp7izr1TSp4NaMLPTUMV/f7zI95Vjye9L3Eck9YRZZ9Ab75VALd1VaAnTipjkrtrxe2uYvKEB+GBioUyPBgB"},{"type":"tool_use","id":"toolu_0147dftUz9U4cpkCSW5Bmr66","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":423,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":111,"service_tier":"standard"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 2.781825458s
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 1692
+ host: ""
+ body: '{"max_tokens":8096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"Ep8DCkYIBxgCKkAOBMGY1BYb72lMWlJDTXe8tKCTd48uBO4sqOMYLqI2WZD8DaseV03tSVsBObecDyrb2Omtagha8kh4UFnRazPoEgzPGSZY4wXCWYxr5aIaDDwh07fdcnwhnIqTaiIw31yCF1OvusyyXjKj72wLYbpkkJcbieCGBziRhXcYsxIUKf0+u3NK8Hbjx8es7RORKoYCUWgbBdiDoPf5v0Da4uuTEOZ7KoNRtd7oARxtdt7+rNRHDK3rQBR+5iJ6mATY8FU8T5I5mbtIr40kA418VoiMW3sMxheNaEP54Lu91s41BsovV1jQeHF53LBmpvoTM/mEI4bR6PnIPp5186zEBpbShHTeoPfdrMEoAYsr8r5KvbQjdQzOq9Rf3ozqBsn8zpQTy1vj00e2r0G+ryl36luG2rnqkzNw8ns+wIllRTGcT1kriXoZkq627V8eW98YgtAkB6s2JRC4EP5pMp7izr1TSp4NaMLPTUMV/f7zI95Vjye9L3Eck9YRZZ9Ab75VALd1VaAnTipjkrtrxe2uYvKEB+GBioUyPBgB","thinking":"The user is asking for weather information for Florence, Italy. I have access to a weather function that requires a location parameter. The user has provided \"Florence, Italy\" as the location. I should use this exact location in my function call.","type":"thinking"},{"id":"toolu_0147dftUz9U4cpkCSW5Bmr66","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_0147dftUz9U4cpkCSW5Bmr66","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","type":"text"}],"thinking":{"budget_tokens":4000,"type":"enabled"},"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Anthropic/Go 1.10.0
+ url: https://api.anthropic.com/v1/messages
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"msg_01PagoEQ1263hFpSPvr7pNqs","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"text","text":"The current temperature in Florence, Italy is 40°C (104°F). That''s quite hot! It looks like Florence is experiencing very warm weather right now."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":37,"service_tier":"standard"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 2.863132958s
diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash.yaml b/providertests/testdata/TestGoogleCommon/thinking-gemini-2.5-flash.yaml
similarity index 78%
rename from providertests/testdata/TestGoogleCommon/gemini-2.5-flash.yaml
rename to providertests/testdata/TestGoogleCommon/thinking-gemini-2.5-flash.yaml
index cad11a8eb94671c02ada96759d017d1ba6fdad4e..66d22a182a4429458fdfc1b9a9b7fafcf210c2c6 100644
--- a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash.yaml
+++ b/providertests/testdata/TestGoogleCommon/thinking-gemini-2.5-flash.yaml
@@ -30,7 +30,7 @@ interactions:
"content": {
"parts": [
{
- "text": "**Okay, let's break this down.**\n\nRight, I've got a user who needs the weather in Florence, Italy. Simple enough. Since I have the `weather` tool at my disposal, that's definitely the route to go. The key here is the `location` parameter within that tool. I need to specify \"Florence, Italy\" as the value for the `location` parameter. Therefore, the most direct and efficient approach is to call `default_api.weather(location=\"Florence, Italy\")`. That should get us exactly what we need.\n",
+ "text": "**My Approach to the Florence Weather Query**\n\nOkay, so the user needs the weather for Florence, Italy. No problem. That's a straightforward request. I know I have a tool called `weather`, which is perfect for this. My first thought is to grab that tool and use it. I'll need to specify the location, of course. \"Florence, Italy\" is what I need to feed into the `location` parameter of the `weather` tool. Essentially, I'm just going to call the `weather` tool with \"Florence, Italy\" as the input. That should give me the weather information they're looking for. Easy peasy.\n",
"thought": true
},
{
@@ -40,7 +40,7 @@ interactions:
"location": "Florence, Italy"
}
},
- "thoughtSignature": "CrQCAdHtim/6CS/mj6pws3rQtKhb1HdlEqRkjQ85xgZKrCFA2v3+MTLIf1foIHl0I7YqRgRSUZQClztnsrrD7avdIcWMRKxC03GaSaPD5Z0ydXt6p4hufk/mmLTAARDWyjW2pVkT+Lk59+TwdUH1f7GsSmtXZJrwN70wnDTawFfuKSJhdaZ9r2ZPe6H9Yv+BfA+IRZ/r2no1aLtaFGSuQJvzqko+vADveXtEQRwHeUOE1ElKT76yHTP71XC6PakJfNIj0vnd+EMJh4iESDNAbWIoPNixXmNpINgTfZjeI12dgT2JWCH6IKmoAIehZSKXr5/SBY/jyKWYRSZwMzy5YCbf19//q+qby1M0eGgj4jqo176oD9LBM/PBEFI3oAgEwet1wT+Ssja1VJ40VwkRmErS1jdMdGQ="
+ "thoughtSignature": "CpICAdHtim/uAn9hFcnUaVUJ5BitYNYMl+/HjfIwgECLXLa3/RJ5LabwcGy+nwddN6CF1P8/jUTBrNjwxP5ox9pPRMTUyuCKbDerCwo8lNJqqakI/rqXM8znQkO0jPdkTG+tyOJpjIAFvCL2b9zTXG6IIk3utmTAbvFkg2tR81WCcvf0zZshcWyjoGZYLL419U3Pn5tiOvwWbaZED0P1IHgyIQ1SWJrN4hlK2XSCdApHe9sYYg6Tq52pGVSNSBJOMxAjbPUhmRHA0kOAozgUiduvEqyzaxJTB8imN8KmrtLzZJxQUC54pg9KkSTQ5gz0jixmT+NTPATrnyUDOqZ6i69rPVtlWANHhscj8RooCKj6s3eX4A=="
}
],
"role": "model"
@@ -52,24 +52,24 @@ interactions:
"usageMetadata": {
"promptTokenCount": 54,
"candidatesTokenCount": 15,
- "totalTokenCount": 134,
+ "totalTokenCount": 125,
"promptTokensDetails": [
{
"modality": "TEXT",
"tokenCount": 54
}
],
- "thoughtsTokenCount": 65
+ "thoughtsTokenCount": 56
},
"modelVersion": "gemini-2.5-flash",
- "responseId": "38LTaK2VKdjcnsEP84uh0AM"
+ "responseId": "scXTaIm8B-m1nsEP4trWkAM"
}
headers:
Content-Type:
- application/json; charset=UTF-8
status: 200 OK
code: 200
- duration: 1.941863208s
+ duration: 2.234945625s
- id: 1
request:
proto: HTTP/1.1
@@ -120,11 +120,11 @@ interactions:
]
},
"modelVersion": "gemini-2.5-flash",
- "responseId": "4MLTaJrLBJ7hnsEPwuCKqA0"
+ "responseId": "scXTaPDFIvPPnsEP4rTvuAM"
}
headers:
Content-Type:
- application/json; charset=UTF-8
status: 200 OK
code: 200
- duration: 407.813167ms
+ duration: 411.970958ms
diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro.yaml b/providertests/testdata/TestGoogleCommon/thinking-gemini-2.5-pro.yaml
similarity index 77%
rename from providertests/testdata/TestGoogleCommon/gemini-2.5-pro.yaml
rename to providertests/testdata/TestGoogleCommon/thinking-gemini-2.5-pro.yaml
index 0a43ce9ce1383e44d21dfa6d1344876616e1aa67..ac585ee219c76ca550ea90fd552ae88562b8ad76 100644
--- a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro.yaml
+++ b/providertests/testdata/TestGoogleCommon/thinking-gemini-2.5-pro.yaml
@@ -30,7 +30,7 @@ interactions:
"content": {
"parts": [
{
- "text": "**Okay, let's break this down.**\n\nI see the user is asking about the weather in Florence, Italy. That's a clear signal to use the `weather.get_weather` function. It's a straightforward request, so I need to translate \"Florence, Italy\" into the correct parameters for that function. The `get_weather` function needs a `location` parameter, and the user has helpfully given me exactly what I need: \"Florence, Italy\". Perfect. Now I just need to feed that information into the function.\n",
+ "text": "**Thinking about Weather in Florence**\n\nOkay, so I'm trying to figure out the weather in Florence, Italy. That's a pretty straightforward request. From what I know about the available tools, this falls perfectly within the scope of the `weather.get_weather` function. It seems that all I need to do is plug \"Florence, Italy\" into the `location` parameter and I should get the information I need. Seems simple enough.\n",
"thought": true
},
{
@@ -40,7 +40,7 @@ interactions:
"location": "Florence, Italy"
}
},
- "thoughtSignature": "CpUCAdHtim+FkIKuYF/pMBD+SuDOrCu9MGrL4toE9OsH93oInrdaqZgJaEGI3FmSd1fyuYdx9mttRXxUhA9cjrC3NqIMUVYG7nXS6QcPOSi8qwO4MqYNWnllSpo/0jDdHem7id9bVJW7Y2SeKXO4kPK72QSonogI9ZDWmzRMhdoGg6FJ/5I1cx8Wnpc80kdXKmgWZNPOjJbt7IUqRucH+bRoWCTnUMuBjyAs4Ut3f55MYGmyn6bb8PRc+5/ZxN8OCFxcffc+TubEIr3VGBOZXxEyTLlTGK8RnCumpdph/a40UCSf8OFnN0FgxrPEa2cNUnGRvNTxMcSCnoz02k7cG+/7C/1S8ICEx6b/fDZoCzhEW0Z9oh/l9w=="
+ "thoughtSignature": "CpwCAdHtim88P4nCnVwvqi9uT52t2Jr3nEZZzq0Nc4Nu8ZYwHUX2ZctVNCfrWJjOAzPFVSaT5b8mIZTGog+tkOI8gJdAzyrUwi3N2ArFuTZq/be92EzfVEBmCyrG4sVqsQsMbpNfM6Xq0XUa8XC3H9yOh0mWGBjGEaM6t511bAJ0bst1pkTo2u1GXOFvnVbMjENFnbkkZz4Zrjp+JFQvyX+MAVV0MkVyaJ0Pru/J7lHZgT+TPO9pz70LUomT2XepZKBIeEvsjRux7obfsX9AfiTPNY4m9SAFNZGlZOMbGbijIYMgODR0XPaLwXtLtDthaJrZANKPsAn9NKdLBOT7wBSM2PJoJ/cGklvvH6G11Ouhqno9iILH5DvJkCJUcbg="
}
],
"role": "model"
@@ -52,24 +52,24 @@ interactions:
"usageMetadata": {
"promptTokenCount": 54,
"candidatesTokenCount": 15,
- "totalTokenCount": 133,
+ "totalTokenCount": 135,
"promptTokensDetails": [
{
"modality": "TEXT",
"tokenCount": 54
}
],
- "thoughtsTokenCount": 64
+ "thoughtsTokenCount": 66
},
"modelVersion": "gemini-2.5-pro",
- "responseId": "5MLTaIDkCJ6FkdUP-Py0kA0"
+ "responseId": "tsXTaOmOLK7CnsEPhrDXmA0"
}
headers:
Content-Type:
- application/json; charset=UTF-8
status: 200 OK
code: 200
- duration: 4.03471325s
+ duration: 5.094352209s
- id: 1
request:
proto: HTTP/1.1
@@ -99,7 +99,7 @@ interactions:
"content": {
"parts": [
{
- "text": "It is 40 C in Florence, Italy. \n"
+ "text": "The weather in Florence, Italy is 40 C. \n"
}
],
"role": "model"
@@ -110,8 +110,8 @@ interactions:
],
"usageMetadata": {
"promptTokenCount": 84,
- "candidatesTokenCount": 11,
- "totalTokenCount": 95,
+ "candidatesTokenCount": 12,
+ "totalTokenCount": 96,
"promptTokensDetails": [
{
"modality": "TEXT",
@@ -120,11 +120,11 @@ interactions:
]
},
"modelVersion": "gemini-2.5-pro",
- "responseId": "5sLTaNHWA6j7nsEPm8f_0A0"
+ "responseId": "t8XTaNbKL6-FvdIPhdyn2QI"
}
headers:
Content-Type:
- application/json; charset=UTF-8
status: 200 OK
code: 200
- duration: 1.913587958s
+ duration: 1.057940625s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4.yaml
index 88560a52598bdc01e51d325689a05e48b11a9388..c64cae8bc3528063bfd71ef4333473a285c3d761 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709909-zQMtAcR6qzmNiMKB73oc\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758709909,\"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_01GWP9mk73M2FnVX42JhjVVy\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"toolu_vrtx_01GCmBRYRcYZbCJmRkTET3Ud\",\"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
+ duration: 1.985009541s
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_01GWP9mk73M2FnVX42JhjVVy","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_01GCmBRYRcYZbCJmRkTET3Ud","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_01GWP9mk73M2FnVX42JhjVVy","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_01GCmBRYRcYZbCJmRkTET3Ud","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709913-8G000CLolX4fZPWGZlF7\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758709913,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The results are:\\n- Adding 2 + 3 = 5\\n- Multiplying 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":700,\"completion_tokens\":35,\"total_tokens\":735,\"cost\":0.002625,\"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.000525},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 2.559913666s
+ duration: 2.048003125s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_amazon-bedrock.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_amazon-bedrock.yaml
deleted file mode 100644
index c1bb0fc08899e0f83dee1cbdae5467214aadcec0..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_amazon-bedrock.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 877
- 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"}],"provider":{"only":["amazon-bedrock"]},"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{\"id\":\"gen-1758703529-ZmfakQzYpIkbRFyjUga0\",\"provider\":\"Amazon Bedrock\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703530,\"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_bdrk_013934jsFfSCuMPgmnqh3z9z\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"toolu_bdrk_01CfkhzzfyWsW37jfiZpQ88i\",\"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.485876875s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1395
- 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_bdrk_013934jsFfSCuMPgmnqh3z9z","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_bdrk_01CfkhzzfyWsW37jfiZpQ88i","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_bdrk_013934jsFfSCuMPgmnqh3z9z","role":"tool"},{"content":"6","tool_call_id":"toolu_bdrk_01CfkhzzfyWsW37jfiZpQ88i","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"}],"provider":{"only":["amazon-bedrock"]},"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{\"id\":\"gen-1758703533-IIg4Ym3Dkj1ac59khY8H\",\"provider\":\"Amazon Bedrock\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703533,\"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.23777425s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_anthropic.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_anthropic.yaml
deleted file mode 100644
index 58f3faef0872a09b1471de85127c18470def7200..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_anthropic.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 872
- 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"}],"provider":{"only":["anthropic"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758703475-P2LpdTm5jRxcZoEKNiWU\",\"provider\":\"Anthropic\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703475,\"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_01RLtnPkZjcn8LBw7DnzgXgc\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"toolu_01N9pdWYSxvjPN9MqQrKJHkt\",\"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: 3.666857417s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1370
- 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_01RLtnPkZjcn8LBw7DnzgXgc","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_01N9pdWYSxvjPN9MqQrKJHkt","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_01RLtnPkZjcn8LBw7DnzgXgc","role":"tool"},{"content":"6","tool_call_id":"toolu_01N9pdWYSxvjPN9MqQrKJHkt","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"}],"provider":{"only":["anthropic"]},"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{\"id\":\"gen-1758703479-wJyqyWVMv3t3IPeEEt2S\",\"provider\":\"Anthropic\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703479,\"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.50687s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex.yaml
deleted file mode 100644
index 76f613b8a05c41a8c8e7ec7a926903199d7096ed..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 876
- 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},"provider":{"only":["google-vertex"]}}'
- 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{\"id\":\"gen-1758703425-d15SjY2ux8c2QzYi6TPn\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703425,\"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_01CWcnkmJC9pcFYgzPfiWJt1\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"toolu_vrtx_01VEiBATDE9Ro1puyAzkSyzm\",\"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: 1.956007208s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1394
- 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_01CWcnkmJC9pcFYgzPfiWJt1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_01VEiBATDE9Ro1puyAzkSyzm","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_01CWcnkmJC9pcFYgzPfiWJt1","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_01VEiBATDE9Ro1puyAzkSyzm","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"}],"provider":{"only":["google-vertex"]},"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-1758703428-NHecdMordMUFZv37xtMl\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703429,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The results are:\\n- Adding 2 + 3 = 5\\n- Multiplying 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":700,\"completion_tokens\":35,\"total_tokens\":735,\"cost\":0.002625,\"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.000525},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 2.061811375s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex/europe.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex/europe.yaml
deleted file mode 100644
index b627faf9e4649b53eb42eaa52007358a297881f3..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex/europe.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 883
- 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"}],"provider":{"only":["google-vertex/europe"]},"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-1758703503-8Q9qrqUvAu9QUAwulmjn\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703503,\"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_013wNjkM9KQsrasC9AJL4DWS\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"toolu_vrtx_016TcghY6tvnbsi5kJuoZodx\",\"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: 1.461070292s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1401
- 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_013wNjkM9KQsrasC9AJL4DWS","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_016TcghY6tvnbsi5kJuoZodx","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_013wNjkM9KQsrasC9AJL4DWS","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_016TcghY6tvnbsi5kJuoZodx","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},"provider":{"only":["google-vertex/europe"]}}'
- 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-1758703505-d4uGS0L6LB4xXh0BK8YC\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703505,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The results are:\\n- Adding 2 + 3 = 5\\n- Multiplying 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":700,\"completion_tokens\":35,\"total_tokens\":735,\"cost\":0.002625,\"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.000525},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.445666375s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex/global.yaml
deleted file mode 100644
index dbc38b48348d596512afc69f89cf365cc055938e..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_claude-sonnet-4_google-vertex/global.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 883
- 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"}],"provider":{"only":["google-vertex/global"]},"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-1758703445-QkUFYGWcvZu3vyW94D6Q\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703445,\"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_01SoK6DtD4CqT7dKoa3x1B85\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"toolu_vrtx_01MmfQ8Y1yrWJPkm41251xJd\",\"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: 1.023703791s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1401
- 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_01SoK6DtD4CqT7dKoa3x1B85","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_01MmfQ8Y1yrWJPkm41251xJd","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_01SoK6DtD4CqT7dKoa3x1B85","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_01MmfQ8Y1yrWJPkm41251xJd","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"}],"provider":{"only":["google-vertex/global"]},"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-1758703447-VGZedsPlwY5BjItxJplx\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703447,\"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: 1.63970575s
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
index f0775a4be4af77c7116c3317d9f18bfc911054b9..1c0a8078e846825d81c68a41f5cddf86695438ae 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_deepseek-chat-v3.1-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_deepseek-chat-v3.1-free.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709968-mvloyDSfezznSSjqioaX\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758709969,\"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_b02b\",\"function\":{\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\",\"name\":\"add\"},\"type\":\"function\"},{\"index\":1,\"id\":\"call_5e7e\",\"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
+ duration: 766.589375ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_b02b","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_5e7e","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_b02b","role":"tool"},{"content":"6","tool_call_id":"call_5e7e","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709973-WhTJ4RMgHsUrhdINKjit\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758709973,\"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
+ duration: 791.058375ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_deepseek-chat-v3.1-free_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_deepseek-chat-v3.1-free_deepinfra.yaml
deleted file mode 100644
index fe23a8b427f3e7dadda5abd95a5891134cd3cc1a..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_deepseek-chat-v3.1-free_deepinfra.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 879
- 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"}],"provider":{"only":["deepinfra"]},"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-1758704103-q5uX9IyKUcV7EvaksTgv\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758704103,\"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 simultaneously for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_d605\",\"function\":{\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\",\"name\":\"add\"},\"type\":\"function\"},{\"index\":1,\"id\":\"call_2104\",\"function\":{\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\",\"name\":\"multiply\"},\"type\":\"function\"}]}}],\"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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 889.615417ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1308
- 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_d605","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_2104","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_d605","role":"tool"},{"content":"6","tool_call_id":"call_2104","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"}],"provider":{"only":["deepinfra"]},"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-1758704107-RzxKSPNt9OdDs45JItaM\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758704107,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The addition of 2 and 3 gives: **5**\\nThe multiplication of 2 and 3 gives: **6**\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":310,\"completion_tokens\":27,\"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: 914.209667ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash.yaml
index b06f84ed21e80b5088a1b87a7fc36bd8243fdf20..461bdfde44f08c5f75d014e9b26d97aaeb30945b 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n{\"id\":\"gen-1758709947-sQAWETIT35KSACopgDjR\",\"provider\":\"Google\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758709947,\"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_zYDsJmpRHxcMtVuDxyGf\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"b\\\":3,\\\"a\\\":2}\"}},{\"index\":1,\"id\":\"tool_1_multiply_KKrDvKHjLkwK6UaVs8xq\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"b\\\":3,\\\"a\\\":2}\"}}]}}],\"usage\":{\"prompt_tokens\":57,\"completion_tokens\":10,\"total_tokens\":67,\"cost\":0.00001455,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00000855,\"upstream_inference_completions_cost\":0.000006},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 853.978125ms
+ duration: 1.796878416s
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_zYDsJmpRHxcMtVuDxyGf","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"tool_1_multiply_KKrDvKHjLkwK6UaVs8xq","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_zYDsJmpRHxcMtVuDxyGf","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_KKrDvKHjLkwK6UaVs8xq","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n{\"id\":\"gen-1758709949-NULlbZf6GY5H32i1Q9Iq\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758709949,\"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\":108,\"completion_tokens\":26,\"total_tokens\":134,\"cost\":0.0000212,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000108,\"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
+ duration: 713.730416ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash_google-ai-studio.yaml
deleted file mode 100644
index 1a356df89cb74268d32f2fe8ff8bd73f264de0ab..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 881
- 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"}],"provider":{"only":["google-ai-studio"]},"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-1758703932-ESZQxMiMAimhFoBOekmM\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703932,\"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_5VvKfmbHYCUCv59xdW4C\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"index\":1,\"id\":\"tool_1_multiply_y0o5frupUfLUmo8tP0ao\",\"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: 889.012458ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1324
- 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_5VvKfmbHYCUCv59xdW4C","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_y0o5frupUfLUmo8tP0ao","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_5VvKfmbHYCUCv59xdW4C","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_y0o5frupUfLUmo8tP0ao","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"}],"provider":{"only":["google-ai-studio"]},"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-1758703933-o9AfTE1ljG5FO9Py339H\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703933,\"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\":111,\"completion_tokens\":26,\"total_tokens\":137,\"cost\":0.0000215,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000111,\"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: 581.596625ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash_google-vertex.yaml
deleted file mode 100644
index 94b4f91e4bc8b9d82883d0fb346284884ef9790a..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.0-flash_google-vertex.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 878
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703944-4yTVzEmbhHCDx3U1PJKt\",\"provider\":\"Google\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703944,\"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_AsS4AGt4KpG6XYKLSr4M\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"index\":1,\"id\":\"tool_1_multiply_8WbNDznbYqrzIU1jmuVj\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}]}}],\"usage\":{\"prompt_tokens\":57,\"completion_tokens\":10,\"total_tokens\":67,\"cost\":0.00001455,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00000855,\"upstream_inference_completions_cost\":0.000006},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.725530459s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1321
- 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_AsS4AGt4KpG6XYKLSr4M","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_8WbNDznbYqrzIU1jmuVj","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_AsS4AGt4KpG6XYKLSr4M","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_8WbNDznbYqrzIU1jmuVj","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},"provider":{"only":["google-vertex"]}}'
- 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-1758703945-pmPsolThmNVr8GrVxsbc\",\"provider\":\"Google\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703945,\"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\":111,\"completion_tokens\":26,\"total_tokens\":137,\"cost\":0.00003225,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00001665,\"upstream_inference_completions_cost\":0.0000156},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.586302583s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash.yaml
index 01a89ba6d7b38afb7d6c9f0c558b11830406142c..aa65de20d9b1e2df25c629e2e276f61ee1b6c304 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n{\"id\":\"gen-1758709940-GMENMGdo7PfvyvwUNfSd\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758709940,\"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_KIuGq785KJdeofDDRWKg\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"b\\\":3,\\\"a\\\":2}\"}},{\"index\":1,\"id\":\"tool_1_multiply_ZDgHrnYtnZtQ7YHjNtST\",\"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
+ duration: 701.036042ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_KIuGq785KJdeofDDRWKg","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"tool_1_multiply_ZDgHrnYtnZtQ7YHjNtST","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_KIuGq785KJdeofDDRWKg","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_ZDgHrnYtnZtQ7YHjNtST","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: '{"id":"gen-1758709941-RZkFGABNsZlHx5h2RSPq","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion","created":1758709941,"choices":[{"logprobs":null,"finish_reason":"stop","native_finish_reason":"STOP","index":0,"message":{"role":"assistant","content":"I have added and multiplied the numbers 2 and 3. The sum is 5 and the product is 6.","refusal":null,"reasoning":null}}],"usage":{"prompt_tokens":110,"completion_tokens":25,"total_tokens":135,"cost":0.0000955,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000033,"upstream_inference_completions_cost":0.0000625},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}'
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 1.021976416s
+ duration: 424.903667ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-ai-studio.yaml
deleted file mode 100644
index ce9dc06757b39a5a2694c1c198c3ecce4884416d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 877
- 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},"provider":{"only":["google-ai-studio"]}}'
- 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-1758703830-0RLTMeyBcqMMKKPQjQBN\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703830,\"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_dlpuikESZGTWUTyPauKY\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"index\":1,\"id\":\"tool_1_multiply_aH03S6PKLAAcaatuy4a7\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"b\\\":3,\\\"a\\\":2}\"}}]}}],\"usage\":{\"prompt_tokens\":121,\"completion_tokens\":36,\"total_tokens\":157,\"cost\":0.0001263,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000363,\"upstream_inference_completions_cost\":0.00009},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 682.396ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1320
- 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_dlpuikESZGTWUTyPauKY","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_aH03S6PKLAAcaatuy4a7","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_dlpuikESZGTWUTyPauKY","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_aH03S6PKLAAcaatuy4a7","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"}],"provider":{"only":["google-ai-studio"]},"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-1758703831-CLdqZOjspvlZ11SxO6fq\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703831,\"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.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":218,\"completion_tokens\":23,\"total_tokens\":241,\"cost\":0.0001229,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000654,\"upstream_inference_completions_cost\":0.0000575},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 444.417625ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-vertex.yaml
deleted file mode 100644
index 536e2086624864d6c6c82b1983ea53bc1166ae26..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-vertex.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 874
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703838-jPCAdfj7uI7lsGva0U6o\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703838,\"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_u4UhhORuAGJw75fzTq0Y\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"index\":1,\"id\":\"tool_1_multiply_SRxpexYe5wBL2HZDKm4O\",\"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: 736.498625ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1317
- 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_u4UhhORuAGJw75fzTq0Y","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_SRxpexYe5wBL2HZDKm4O","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_u4UhhORuAGJw75fzTq0Y","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_SRxpexYe5wBL2HZDKm4O","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"}],"provider":{"only":["google-vertex"]},"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-1758703838-V7VWtgDg5cottmdrd5oM\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703838,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The sum of 2 and 3 is 5. The product of 2 and 3 is 6.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":110,\"completion_tokens\":24,\"total_tokens\":134,\"cost\":0.000093,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000033,\"upstream_inference_completions_cost\":0.00006},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 729.437625ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-vertex/global.yaml
deleted file mode 100644
index 353cf12f11153c77f7408f218a65e58583583288..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gemini-2.5-flash_google-vertex/global.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 881
- 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"}],"provider":{"only":["google-vertex/global"]},"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-1758703823-viyGjtA6CoC3yZGePDDg\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703823,\"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_NaecewiKb0yPItnzTYuj\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"b\\\":3,\\\"a\\\":2}\"}},{\"index\":1,\"id\":\"tool_1_multiply_m7sJ1eZTXZAGrgiqjtKW\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"b\\\":3,\\\"a\\\":2}\"}}]}}],\"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: 816.24375ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1324
- 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_NaecewiKb0yPItnzTYuj","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"tool_1_multiply_m7sJ1eZTXZAGrgiqjtKW","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_NaecewiKb0yPItnzTYuj","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_m7sJ1eZTXZAGrgiqjtKW","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"}],"provider":{"only":["google-vertex/global"]},"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-1758703824-Ry4umAh5glto49FaWZxN\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703824,\"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.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":109,\"completion_tokens\":25,\"total_tokens\":134,\"cost\":0.0000952,\"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.0000625},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 711.883375ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_glm-4.5.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_glm-4.5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..a6b7d261234c5d49cc5728cf378a9163475a4a19
--- /dev/null
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_glm-4.5.yaml
@@ -0,0 +1,63 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 825
+ 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":"z-ai/glm-4.5","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{\"id\":\"gen-1758710053-0WC7VhXbumO0nrLDF61g\",\"provider\":\"Novita\",\"model\":\"z-ai/glm-4.5\",\"object\":\"chat.completion\",\"created\":1758710053,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\\nI'll add and multiply the numbers 2 and 3 for you.\\n\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_25e12cd247fd447191fc8490\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"index\":1,\"id\":\"call_05ec1716dbc04ba9894d94df\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":286,\"completion_tokens\":58,\"total_tokens\":344,\"cost\":0.0002992,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":44,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001716,\"upstream_inference_completions_cost\":0.0001276},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 1.033240041s
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 1323
+ 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":"\nI''ll add and multiply the numbers 2 and 3 for you.\n","tool_calls":[{"id":"call_25e12cd247fd447191fc8490","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_05ec1716dbc04ba9894d94df","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_25e12cd247fd447191fc8490","role":"tool"},{"content":"6","tool_call_id":"call_05ec1716dbc04ba9894d94df","role":"tool"}],"model":"z-ai/glm-4.5","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{\"id\":\"gen-1758710055-Q35N8r7QvwRxK0GEDx1T\",\"provider\":\"Z.AI\",\"model\":\"z-ai/glm-4.5\",\"object\":\"chat.completion\",\"created\":1758710055,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\\n\\nThe results are:\\n- Addition: 2 + 3 = 5\\n- Multiplication: 2 × 3 = 6\",\"refusal\":null,\"reasoning\":\"The user asked me to add and multiply the numbers 2 and 3. I used both functions as instructed:\\n\\n1. add(2, 3) = 5\\n2. multiply(2, 3) = 6\\n\\nThe results show that 2 + 3 = 5 and 2 × 3 = 6.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The user asked me to add and multiply the numbers 2 and 3. I used both functions as instructed:\\n\\n1. add(2, 3) = 5\\n2. multiply(2, 3) = 6\\n\\nThe results show that 2 + 3 = 5 and 2 × 3 = 6.\",\"format\":\"unknown\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":356,\"completion_tokens\":104,\"total_tokens\":460,\"cost\":0.00042133,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":43,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00019253,\"upstream_inference_completions_cost\":0.0002288},\"completion_tokens_details\":{\"reasoning_tokens\":51,\"image_tokens\":0}}}"
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 949.1255ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5.yaml
index fa76242634ba282759399f6aa869c66c99b97e92..72539774e796fa129d97bd1ef75318c33c358e47 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ 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{\"id\":\"gen-1758710016-0AtFf1Iu3Nb9YOfvALsh\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758710016,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Executing tool operations**\\n\\nI’ve got access to tools like functions.add and functions.multiply, and I can use a multi_tool_use.parallel wrapper to run them together. The task is to add and multiply the numbers 2 and 3. So, I’ll call both tools with a=2 and b=3 by using that parallel wrapper. After the tools give me their results, I'll summarize them nicely, showing that 2 + 3 equals 5 and 2 × 3 equals 6. Let’s get started!**Executing tool call**\\n\\nI expect that the wrapper will give back a combined result structure with the outputs from both tool calls. Once I get that, I’ll need to parse the information so I can present it clearly. After parsing, I can just print the results for easy understanding. Let’s go ahead and execute the tool now, and I’ll make sure to handle the results properly once they come back!\",\"tool_calls\":[{\"id\":\"call_eojodpC5HI7opFTOpLUuIICL\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"id\":\"call_KFCE87VyyS1OmmXnMTPHbXCN\",\"index\":2,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Executing tool operations**\\n\\nI’ve got access to tools like functions.add and functions.multiply, and I can use a multi_tool_use.parallel wrapper to run them together. The task is to add and multiply the numbers 2 and 3. So, I’ll call both tools with a=2 and b=3 by using that parallel wrapper. After the tools give me their results, I'll summarize them nicely, showing that 2 + 3 equals 5 and 2 × 3 equals 6. Let’s get started!**Executing tool call**\\n\\nI expect that the wrapper will give back a combined result structure with the outputs from both tool calls. Once I get that, I’ll need to parse the information so I can present it clearly. After parsing, I can just print the results for easy understanding. Let’s go ahead and execute the tool now, and I’ll make sure to handle the results properly once they come back!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo08kHlXdxLgi8bExHRhpDV2L-zPighNPmGb1Etn8Qx7PXwFDRcmhlFXyCTCUr2xbvELh2NTGpsbP4g7rZmatjCy8T93RDOBXjru7EmAKxnKfDvSpexE446aQs-5D8bTwk01wVpUbw9JNipELgFCkHr1DV35v8Ku46GvHBqYEPMd8rqVV2fDaHqP6XiUVsVzGciyRvYPO-eQKmI1yqrXSHZDHggBLdeHL-cXGyB5VSAtnrbUQ2tAJgHB35ONkGCC4UdLFwi6Vt6OR7ykZ4sC2gCZyse9eVlsJtuA2ES74MMY7la-tyPqm-g0MYOWpQoz9UVmeYIsCnlHPNVrCwwo1LOrLtaf7I8cPF99P_7ic-CYhOqDX1dNsifqUH23_1Zpl4ljYaKFI5geIZJAaW4m3BKuexQ_O05TIsUxFJ36cORMDbTIl_6JyUaS-nzuPMoAl6ztZSwmXrglRdsnJ7-nMYP82TmnUst6_n4XI9cqWi3Cql58XawuwhV09AuAG59VIP4U3I7OzDpG5WCDyWDXs50yegdjDg2A98FMED6iurW1NMHc7nzTsVwp0ZdNAC2PA8uv867gD99iSqlpF82cvoHPcUpddJ7P8bN24x_-fe8a67h-rEZ4hmmu_96wD4tuWYpwnN85728SxfDZsPBXev5avb9zXahSw-XjERyrdocbL1zB4aVLEUppsm34JAo1G_qJTWoWfn6APjoAhgu4gkcbLnK5m9PHXnIQEQKzYeGZKGzMKrJALFXa4kSg_dFsLNfJzfaXq_AqQ4SwU6F5g1ldP0no0dVsmHvIQzks4jyTmsMiZTOVXDjoqaTIo0DIdk2x5mJIWcmWB2HjrFJFmSvfkFODvM-DAjfxZsI0BRIzFEPVGA04bKL6Lkd6a8M1UkE0rUKNx5lBkJLM-JyYXrTdph6n-YODo6jvg-6oJ6odAPdtNmQrmw3vKLpJsX-pUsFobdXFFjw-cVwhPE86-IHNOtpRkRy7xU69tAEhiqoxoVbP1AAkerJHMbkzmDeSw1LU3reI8pIkDkpUKlP8NzUG8txFOghGD6wgR49D1wDGKJYG4toqfEdEqciiDQSWTRDbtEYLQ40Kd52EDoI9xAK5xXLIM0kHD2kCaZLXb5yU3yIJPSi14V9SB3vIKjTswK4TIfRc9zqpY8RJoYARaTDuILDJQ1JwOeerR9nSgg8E_nDwepDk-BW7Rp_DXIZsyznsxROgHQh_3PMDOhYE_8LdPzkO41oe_NODjq2xJtnhRGGG2lrIcqKJPEw5olY0vrBnc3zKegeVQ6ORfXKsXNe794kBfkbFBLbEesLBveujRn3sWykczdMp_pLmjAdTN6VE-cmwLxKDx67dgI7B6pDm6JwQPKWE0XcuurHUBzjodUD1DVljpB1B8ZeLZ0R1TAZNMZAXKBw-OBv_KzNMGxIp15k8gGui0z8U0kurvbiMeuMrWmiFA7REDPNyMJ45h9LjfmzMPA89Hl27EipyVzri2BXESbsfkWh41RYnl1xn5M3lUaMPfSvsor2JAbgtnt-xxSclsI9LcclA442-a4qgF2MvF_C2osRhzYUge6qtaYeHiodwSnubMFCcyxEDirliQpGUbrYPa153XZQC44p9ivlT2KK_WMyCwyYMIkYGNHSwWJq3cQ1vrc3vi09rFzHvTWfE6G8vK-7VT5A_vefRAEpoVgJT7j55CzvS2u3-OCyNGBZkcPzmHd2z2FoO1-bfDGhkgTV_APB_lrYxdTWCV9egMdxyJ-HCWqFaoG4w2p3jgW0uc1Mykks3Nt_lt9fe0vBWH2MczhaBOlnP0FJ9B1tXrQMc-J79kamyR_2zDhkCUtRVnqh0Agu8qOxALlrX50VQ7UCwcgjB0iw47XkmKEP9S0DYGiARzBkGFsSi4sgDMBl66G-rJxxUKqwUiABqKy_LVSG1gQsAVMZT1MbAAdr5hbkdYER5uAfLCaL_Q24iobvVRJ9mcXnSvsUmCUVresKBNGowuSplYdt8KOjzJxJsCNxMNrvJmlaSEqHSaj22jWS3jiis6m6dAAC450tr35cpUHf83WRTZd3zDxnfQbZY7xNMo9je4qFN4LQ-XzVdT0A9ZAcryIloK4vm2fhDzTmD8V_BUCPC9vjKY2Sy8dWYWvdLQV6IqyfxVunyY93u5gc5qVksZ6V3uqXCUUcO5eGCjtUTmt7KDUDFZvc8442MoBIzRo2jlJInJ_GGIdmY9fOnEOFwSW9jpL8mHb4jtn\",\"id\":\"rs_68d3c901d204819483483a6e4f94586b0e8abf00f43b3ff9\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":108,\"completion_tokens\":248,\"total_tokens\":356,\"cost\":0.002615,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000135,\"upstream_inference_completions_cost\":0.00248},\"completion_tokens_details\":{\"reasoning_tokens\":192,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 835.204209ms
+ duration: 847.116209ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_eojodpC5HI7opFTOpLUuIICL","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_KFCE87VyyS1OmmXnMTPHbXCN","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_eojodpC5HI7opFTOpLUuIICL","role":"tool"},{"content":"6","tool_call_id":"call_KFCE87VyyS1OmmXnMTPHbXCN","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n{\"id\":\"gen-1758710023-1IaMYEjx6FJhLD50afHF\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758710023,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Results:\\n- Sum (2 + 3) = 5\\n- Product (2 × 3) = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":167,\"completion_tokens\":29,\"total_tokens\":196,\"cost\":0.000249375,\"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.000145},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 1.081003666s
+ duration: 1.022725875s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_azure.yaml
deleted file mode 100644
index c7eb0a93ec17c41cd6b357b25fbe795cfea10dfb..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_azure.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 866
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"usage":{"include":true},"provider":{"only":["azure"]}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707140-7zxlezBRaoQxH8WaCCD4\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707140,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Planning tool usage**\\n\\nI need to respond to the user's request effectively. The developer's instruction says I should always use both addition and multiplication together, and there's a specific tool for that. I’ll utilize the `multi_tool_use.parallel` to run both `functions.add` and `functions.multiply` at the same time, ensuring the parameters are integers. The user's numbers are 2 and 3, so I'll pass {a:2,b:3} to both functions. I think this plan will work well!**Formatting tool calls**\\n\\nI need to set up the tools call properly. I’ll format the `multi_tool_use.parallel` with two entries: one for `functions.add` with parameters {a:2,b:3} and another for `functions.multiply` with the same parameters. Once I receive the results, I’ll craft a concise reply that clearly states both the sum and the product. I could say something like, “Sum: 5, Product: 6,” and keep it minimal in formatting. Let’s get this underway!\",\"tool_calls\":[{\"id\":\"call_38bA2NNRo5OscBPdGq7eI5Pi\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"id\":\"call_9xUJFQuZmBhVgz9zrfVJUq9r\",\"index\":2,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Planning tool usage**\\n\\nI need to respond to the user's request effectively. The developer's instruction says I should always use both addition and multiplication together, and there's a specific tool for that. I’ll utilize the `multi_tool_use.parallel` to run both `functions.add` and `functions.multiply` at the same time, ensuring the parameters are integers. The user's numbers are 2 and 3, so I'll pass {a:2,b:3} to both functions. I think this plan will work well!**Formatting tool calls**\\n\\nI need to set up the tools call properly. I’ll format the `multi_tool_use.parallel` with two entries: one for `functions.add` with parameters {a:2,b:3} and another for `functions.multiply` with the same parameters. Once I receive the results, I’ll craft a concise reply that clearly states both the sum and the product. I could say something like, “Sum: 5, Product: 6,” and keep it minimal in formatting. Let’s get this underway!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo073NC1i_BYNaW_yos6IvjGS4t52wBnnhOkWAAyfg6fpTLLE4ofmi3wjfRlTm03nRMXQC__m8G6UgA0P38BkEN6fTnEklg9IkPOw-24amjYsUNSJoug_KCWnbDcpyD_DhMVhbxyLVN1YSw4o_og1F9reEmMMuqBV0FC5_rorIUDVIQ0QjTT5QU9aQ30FxzKWOlivFjgss6QHyRvVqhb0CKz69uWWSZyYYM1Ba5m0m3YXOnjMaFRlxwl1flGkA-T8OQk-Cda7oNLVofnAPJ8UN8UtBWg_Y24EToDkpm69erc9Nsmf0Yxfc6iIPAqh7VmEw5dQ5L9zQj94O81Xe8XuLAzbqiumnjwqFjca_59T9AbPAmhvOx0uLX2MtBBgfwRP2EM2lOwu8pLC5WMBZPvuSxq7R8wOBNUCJt1pmSG1IQBkZ4pnjvFy6PhO-p88RQZB_BrDpmqW5rave4VKlgrowPzfaiOkLJWKCFyoruW7S0LHlHEXXH1u7kpJBhlhFJBuW4CjggezVIAldWpVzdevDJjHiEQaLaxrMZcSB1XWlqbyYzpkgzzW69fMWYd3ewGyRjTpCpOCyGbKWOiWgqj3CHYCXTCbwls_r97d0aXabD2ps9cBWxPgp7ikjRkBlcw3wHd4jMUx8wkSxoMJ1tP6tH1tq0S35vHQ2TqrByNNbbkiXj2Xzl7vOrxSZcfYM51QF8sq7Yd5gM7Xe3rmYWx8h4-pCRPtG6MmI9GQDzsiP72cAtpNipGBj0YIK7-rxN5lBdaYZxkAO8O_g1Ay0sSw6pwKBXV7cRTARpZHznJB7qtIZuCAlPfrbj8CNYjGK5w09oG5lxBnDfAOhCvNDzzM2tDgld837-IK538DVhTD0s_Q6sKV5hNr7166GWRvn1UVZHyyBuehlKlpQ-tzUBkcCdV5xWjJbqVv-bTH40DjDvp2x7SqV6m_Nb_VJfsxCFR25SUU4pTlIPtqtUA8T_KyEets2iTS9HAfdlMcYfaWLQ1fg2IkucESoZCA11PEefZnhaqJKcd7Syy-yMdmteG2wJBaB3jdVdMPgUtzpJbyIIdbYrFgaFZH4EB4Yf4NcJp5ox42ro2sACZNFxZneZ1lJlskd5WG-HUWK-pzm9VSATtaQnIDTp66DUTU2dUlfwvZOxzI5_TGN8lBpRIWS3Ah22kkn37NbUeanaeVYR4hJIIQtDpFyfrQdy7zRn0S0WPfU5KJGMsPERjcdcqBnDGerpet6GXYKmHfRMheU6fmM88rsSujQ4Qqb-tBYTLdj21_AfnBOWivKr81fOJNK4V5mznyHVp1EayS5D7Mun7cvIKqqL6KLKNnNO5b-uUQMe78SCEN6MqG9huVGVXSaeQGMOFhqJIjhwZfxt2mbHfhaXWTyWFp8eJJapf_OcGoag_pIt4nMVQEnki_06KSrSwTpzs7fwRVMQzYKnWchgMoLLuh2381ZPosY4wLZ4-BxyfgZ5_gbX1fwIuz-hLYynhhlmuiUsKmhMCZyb1p9VulKQLFj55kTjQiaPebDqFKGfy1oG5gSh23WJ-8C-zaUybDbcW7pWCNmPeAaZ7L8_YJrN-Y0Hoskrn2uu9Y-11fWo8PoP3ifnY3tyEPeahgty6Bm_oI48jN7n9O9sYza3Nsdj_3XiIQStSD1B1Nmdy2vu1F5rbdOCgj02VaU3PhPnxrvM5ybT4HclX55qZlPjQpbDyAS0meyFdGyea7wCMULjer6AcdSN4vE31_neNfuGJ0HZYDYC6fFajoysmaLcv9LtFC_ZFcOIidf7uIGWSR6-LDAt5jDnyjR2oUyF13p9eeNo_IAcDySvU4KSiS2NojKElk4f7ku-zXH7Ll39Ol84AecLINobDDNrEloW-FqBwTx9DZbATuRvwUBpO7H0eKa4djMLg9_C2q5SkBsvL0ItfLbC_O0Wo4hnycQ3eXwixP9xs61Ji-mgX6lxzM4EQzfU5-_nbenxHrJVBD7G2LrfibflAuJj81ybrcbhGOu5XcgHBU5m1y998yEGF_7Ftqg3EOfJ-p1uJhlgEffNEEKGYgqgcjmTPTXyy4OmuwIN4n6w6AQD-s25by11TwI6ZY696GktMr9mLYKG_70TtWpfDUF15NiACAUabNCdPBNASx9ZP0TA2cMeL4mwTM92K0NCjR1g1zhH9ZlKHBc4ce0W-FhmQGHYlwZUNf1TcnAxwSKGjr8S68Q2q_4MCu8tbSPF15HqGnjfTQtNfgraBRb7GOrMqWXMQsLpmJXpOXD0D9R3MxUrav_j78I6Lgs6WhP8ENGYRTTMiYyb2hwL4vaQYPPPxcEk6Wzy47ZCfy6ohHxaL_8GWyQZRn75tJYBF0bF1megBZ1sE3jVB7Fi3HR6BTX4EYJCbmBNq19HZWq_nMr-YXjVe5diySQ4-nuPnKqgWar6s1YYCvOZv_ul82wF1J-zzomiUXKe7qMDbWUqD89vH5KXavWjtiAEVDp12x2iGFAf3DJFgEI0tQI9OEGEVRLAuXwww5JM4Ajwz_reaccgzdYz1SL0bq3vCKyJ6M1XYRqEXzCb4cFmeaO5_yMz-IwnXyS1-O3MaIU_kBXruWxrxIM50B44EEhtq8eKf1lAICk_uObP4fiuLTwZFRxn82-qOJZ\",\"id\":\"rs_68d3bdc5c1b08194bece7d633f3ddf440d2b531bc87eb859\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":108,\"completion_tokens\":312,\"total_tokens\":420,\"cost\":0.003255,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000135,\"upstream_inference_completions_cost\":0.00312},\"completion_tokens_details\":{\"reasoning_tokens\":256,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 604.054917ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1291
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_38bA2NNRo5OscBPdGq7eI5Pi","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_9xUJFQuZmBhVgz9zrfVJUq9r","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_38bA2NNRo5OscBPdGq7eI5Pi","role":"tool"},{"content":"6","tool_call_id":"call_9xUJFQuZmBhVgz9zrfVJUq9r","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707150-VVMwFo7fEz3DKgrI3MVm\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707150,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Addition result: 5\\nMultiplication result: 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":167,\"completion_tokens\":16,\"total_tokens\":183,\"cost\":0.00036875,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00020875,\"upstream_inference_completions_cost\":0.00016},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 863.837ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_openai.yaml
deleted file mode 100644
index 30c1be8af67ff4d84c7c320c8a3e0e77bc832f3b..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_gpt-5_openai.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 867
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707082-WHye7guGAa2fJ01AudCT\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707082,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"call_lfHjlRqeOaq6arHc4D43P3bV\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"id\":\"call_7OPBsC99NtbdLp6TWNKCVhU7\",\"index\":2,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo072S5oVHd8LsCXn70b4QIsVlymstOi7CpaoVw0CAzkDBPPurF1yT6tLnOGWod93Wfqo8b79oMqnu98V9OLhXsmIH8q0dSyItt9le1j_otjb-UcD80zUWQO4puCLU3f_Z7LBrsfs97BZPJTRVIjef49VcGMCJXKBtlPYZafQ-NpgbNVoj2GnehF-egk7YkPUSp4-swqWVTLn-39pDqt0EgthedGlQAoxVHBvNjY-KvQGPSrjO8ehTKRm185q7NwmtWvvMfJD6VVQ5NGyGX16td8tkam6pOa5dI0XxqnWuX4igXQHkqdELbCwErIMFNC3rL-RmmfXQgH7jwG4k4kbLLkS-_Ukv18weonXmJWwVmsNIAyNaT0xhSDLVKPtRhzTBtSk_jQv9SlCLqBctv98o6KszfF1fD5LHrqVUl7hjGF3nmXabiMwQ4X-6vM1H241n-lQ6qog-xoNH11GrmOK9KDt-slZOJoLeR5Fd98tDYjSY0DWZ0S_RLcR_JJH89QBd19YlGLLJpHnAHoiy_suTIsaZQybEd0Dj-lvmJrkAZcv4CruxkI2ftLRD1U9Yv0aNrXGFdM35ES-Ww9Y849dARXJn_hlJJDgEJA1d8jjtKCFKhS09qOW1NWWc5CBiJaKrK5ZyqGGQYyaszYtMyvPgd33tn3ZlNuNjlFwjjkaQIqsSpqA6r7lOJIlh8SHaKwD2K-PJ2LQe3RKDI1wRhpjYN8qf_8Pve4V_b03JSmLSt6CSYeyT_b7idYMTgfos2lzWPFkVA9bJenLLGTQZLV23eM3YCGxh_qnT_otx8bt1KJnVZ16u_6qh0h5TrRsPq7euEpP7taMdWncKBvJXHq9IHzs9if-CGqEFUMYJhyXmacSTfH0dRdyAoQ0g16TLuOMsJ2Z7-bW6vUbHwLTX2N3UUr_XroBlSEcBPA0a-64ob4O8pvWBpAyhDCHB4_Ksh4izGPH3aB3EiUo_BHgGTlIKLlOaP1T_o-nPC0zn0qvaxsD8lBIJB3lEV_oiZtsdlJmpnX5qVL_ciE4L6rrjuwLDQtYL_WDBtEDeebFlV_Q31b0XgGs-ENeNutURI3U8BLJpiPwOKCoeAQpb_wTtbIr0P03-vYaqRsq2U8qK0MCxToXgoNlUXnSWr4XC1GPuIUDwfnl8ZDDlq3nPU_xTHP3Z3UVtqlhQW5LhIrzKiuweLsBBCrTUPCQkNJrW2_0Z-CAKYs1s_Ix0CX3jGoSCGTINtAMpX8FP7hGZQshQFZ511ghRIbN5rm38Ju6-bDWcjnxwSR9hSo4g4F4cUuBpc7K9O5cJAB1JjdkwMgkJ6mu51q7u7CIV0T8EGJyY61_VV6fDcJ-ls_uaXMHkRuhbrkjH36o1L5F1yWcVW0TV6u54ceRlYYQtvUu_M6Va0ob1Dj8HQSlPmkX9o1fiaZ8Srv8VguPaeBkoi_j2cEPSVPymhDYyDLYBJ3_qSxSjAV8XgzAZP_ziqDo2y_PAjt05CFS7FB6dqZQaUfRJXgSrsdS_SvDllJrEvn-6hjQnsAMW5j54_BqOfhCOOgenM0GnDTG9cX2cQSTh-lw9xl3ZkaOtwwp2nTTX0lSe7gX05mtHso8iD7dF9WnyFSppFEpwhk_ibPI2vsrGKOvQvymElS0tSKlU6SDBwCpOwWCvc8nCbyCBGewRr6aKrPvSwya4R9SfjbciWBfkPaDMIRUQrsHnnWVhOvSWo5q-IGqPkSyX7fB2iS0VOlyb7mKAKK8EPG9oyNrw3CUFpTCBfw4RA7oAB5muCFFtkR29z_XiZI03A_dQKdjUh-2uSD8hrn-T4s1tfdsHcwoVnUoi_uyFtxbm-Hym5GeIgob79YeFUSSj_6t5reD3Mzu0NA64NCBxlbYpIq-Payp165HSNBdlUFAVLvLy1KRdY8dmPuH4ghcCd-TY--TrYXjNyF8Mwd8on602lP6cV-aCPXZOJBuF7EBs5Oug1bb5RyjkAeMXOSYk8pCYma-ND5DMaTGWSBbca7IOFRhBuI2f14RU4zjp6LoQSBvPVlMRDd9GzR25O1j5d0lIhbuDKaSZuLtFlzAAv841PtLvxchWb5vzWLCMRnA_tG0qCsIS6f-fQcdipMFzwXcIXxTL6kMkcxF9hPgUPXpxh2kynerwQW3Y7Zyr7_gMJ1xe78z8ugoZZCvcCO7BGkVYHgKE\",\"id\":\"rs_68d3bd8b640c8190a5d3fc478b0be2070cddc5a22f54429f\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":108,\"completion_tokens\":247,\"total_tokens\":355,\"cost\":0.0013025,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000675,\"upstream_inference_completions_cost\":0.001235},\"completion_tokens_details\":{\"reasoning_tokens\":192,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 922.219792ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1292
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_lfHjlRqeOaq6arHc4D43P3bV","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_7OPBsC99NtbdLp6TWNKCVhU7","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_lfHjlRqeOaq6arHc4D43P3bV","role":"tool"},{"content":"6","tool_call_id":"call_7OPBsC99NtbdLp6TWNKCVhU7","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n{\"id\":\"gen-1758707090-toYnzjde1e2E6gY0BdvG\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707091,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Results:\\n- Addition (2 + 3) = 5\\n- Multiplication (2 × 3) = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":167,\"completion_tokens\":30,\"total_tokens\":197,\"cost\":0.000254375,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000104375,\"upstream_inference_completions_cost\":0.00015},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 815.940041ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free.yaml
index c8168a081454a88bb063e77572ed8aa77a295aa1..1f55f35856627f13c9efdacc8d1e6c0ef369956f 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n{\"id\":\"gen-1758709929-1gstYM5P4oqHK89RZsMN\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758709929,\"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_90182348\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":0,\"type\":\"function\"},{\"id\":\"call_25656741\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":1,\"type\":\"function\"}]}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":394,\"completion_tokens\":246,\"total_tokens\":640,\"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\":178,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 409.521584ms
+ duration: 678.570458ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_90182348","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_25656741","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_90182348","role":"tool"},{"content":"6","tool_call_id":"call_25656741","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n{\"id\":\"gen-1758709931-bxZmqkMz8Tf6pibp78VI\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758709931,\"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\":654,\"completion_tokens\":95,\"total_tokens\":749,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":606,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":70,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 324.281125ms
+ duration: 232.441959ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free_xai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free_xai.yaml
deleted file mode 100644
index 14669e21052f267e37b7ef7ad5370eee85f94de7..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-4-fast-free_xai.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 862
- 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"}],"provider":{"only":["xai"]},"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-1758703692-5YzMNldtKXOYs5Cp8Dxb\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758703692,\"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_98245419\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":0,\"type\":\"function\"},{\"id\":\"call_97035892\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":1,\"type\":\"function\"}]}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":394,\"completion_tokens\":193,\"total_tokens\":587,\"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\":125,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 988.020375ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1223
- 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_98245419","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_97035892","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_98245419","role":"tool"},{"content":"6","tool_call_id":"call_97035892","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"}],"provider":{"only":["xai"]},"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-1758703694-VJqnkMDK9OswpITJ6KpD\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758703694,\"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\":601,\"completion_tokens\":83,\"total_tokens\":684,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":553,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":58,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 805.273834ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1.yaml
index 2c518b6e18eba983d50ec62bce31bdca13f9c743..191013afa3847b71c2744a0cb0044cbd62f1c2d3 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n{\"id\":\"gen-1758709885-9kBeJpPoxTFAk2dRQcvf\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758709885,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"The user asked to add and multiply 2 and 3. I have tools for add and multiply.\\n\",\"tool_calls\":[{\"id\":\"call_14064553\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":0,\"type\":\"function\"},{\"id\":\"call_18694627\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":1,\"type\":\"function\"}],\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The user asked to add and multiply 2 and 3. I have tools for add and multiply.\\n\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":467,\"completion_tokens\":168,\"total_tokens\":635,\"cost\":0.0002878,\"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.000252},\"completion_tokens_details\":{\"reasoning_tokens\":100,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 676.507291ms
+ duration: 603.690708ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_14064553","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_18694627","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_14064553","role":"tool"},{"content":"6","tool_call_id":"call_18694627","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n{\"id\":\"gen-1758709887-YngtfB1W7XIXjDhAZIcV\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758709887,\"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\":\"First, the tool calls returned: add(2,3) = 5, multiply(2,3)=6.\\n\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"First, the tool calls returned: add(2,3) = 5, multiply(2,3)=6.\\n\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":649,\"completion_tokens\":87,\"total_tokens\":736,\"cost\":0.00015662,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":576,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00002612,\"upstream_inference_completions_cost\":0.0001305},\"completion_tokens_details\":{\"reasoning_tokens\":62,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 1.10407175s
+ duration: 677.680917ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1_xai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1_xai.yaml
deleted file mode 100644
index 2d0a8d4613b62d9bd151337558fccdad6015dd70..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_grok-code-fast-1_xai.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 862
- 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"}],"provider":{"only":["xai"]},"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-1758703091-5vAiCyKhsyCicGPyXtny\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758703091,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"The user says: \\\"Add and multiply the number 2 and 3\\\"\\n\\n\\n## Interpreting user request \\n- The user asked to add and multiply the numbers 2 and 3. \\n- This involves calculating both 2 + 3 and 2 * 3 as separate operations. \\n\\n## Performing calculations \\n- Adding 2 and 3 gives a result of 5. \\n- Multiplying 2 and 3 gives a result of 6.\",\"tool_calls\":[{\"id\":\"call_34241586\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":0,\"type\":\"function\"},{\"id\":\"call_90731200\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"},\"index\":1,\"type\":\"function\"}],\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The user says: \\\"Add and multiply the number 2 and 3\\\"\\n\\n\\n## Interpreting user request \\n- The user asked to add and multiply the numbers 2 and 3. \\n- This involves calculating both 2 + 3 and 2 * 3 as separate operations. \\n\\n## Performing calculations \\n- Adding 2 and 3 gives a result of 5. \\n- Multiplying 2 and 3 gives a result of 6.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":467,\"completion_tokens\":329,\"total_tokens\":796,\"cost\":0.0005293,\"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.0004935},\"completion_tokens_details\":{\"reasoning_tokens\":261,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.403105125s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1223
- 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_34241586","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_90731200","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_34241586","role":"tool"},{"content":"6","tool_call_id":"call_90731200","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"}],"provider":{"only":["xai"]},"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-1758703096-Yk0w2w1Rxy1JwWmF5muJ\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758703096,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"2 + 3 = 5 \\n2 * 3 = 6\",\"refusal\":null,\"reasoning\":\"The tools returned: first is 5 (from add), second is 6 (from multiply).\\n\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The tools returned: first is 5 (from add), second is 6 (from multiply).\\n\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":810,\"completion_tokens\":82,\"total_tokens\":892,\"cost\":0.00015828,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":704,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00003528,\"upstream_inference_completions_cost\":0.000123},\"completion_tokens_details\":{\"reasoning_tokens\":67,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 810.960542ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2.yaml
index a2961a0f3cbdfe43decd85a3d2b0c343a8294748..8e465019c561d0513bc92f6320323a72a6fc386c 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2.yaml
@@ -2,35 +2,6 @@
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
@@ -53,21 +24,21 @@ interactions:
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}}}"
+ 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-1758709859-oz7BmUVCG02LNXgRip97\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758709859,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll help you add and multiply the numbers 2 and 3 at the same time.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"functions.add:0\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"functions.multiply:1\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"usage\":{\"prompt_tokens\":197,\"completion_tokens\":59,\"total_tokens\":256,\"cost\":0.00016454,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00007486,\"upstream_inference_completions_cost\":0.00008968},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 1.060787792s
- - id: 2
+ duration: 4.254388208s
+ - id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 1237
+ content_length: 1302
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}}'
+ 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 help you add and multiply the numbers 2 and 3 at the same time.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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
@@ -83,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709864-DslIlM09VNZlvZhXdIfb\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758709864,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Here are the results:\\n\\n**Addition**: 2 + 3 = 5\\n\\n**Multiplication**: 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":291,\"completion_tokens\":30,\"total_tokens\":321,\"cost\":0.00015618,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00011058,\"upstream_inference_completions_cost\":0.0000456},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 823.611583ms
+ duration: 1.020279959s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_baseten.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_baseten.yaml
deleted file mode 100644
index e43815c5022278ae5cbcd5732d90a1c988ea2ac7..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_baseten.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 868
- 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"}],"provider":{"only":["baseten"]},"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-1758698600-Nfd98GJOt16YoZ9aKeA7\",\"provider\":\"BaseTen\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698600,\"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 for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"functions.add:0\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"index\":1,\"id\":\"functions.multiply:1\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"system_fingerprint\":null,\"usage\":{\"prompt_tokens\":216,\"completion_tokens\":58,\"total_tokens\":274,\"cost\":0.0002746,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001296,\"upstream_inference_completions_cost\":0.000145},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 457.958625ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1343
- 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 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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},"provider":{"only":["baseten"]}}'
- 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-1758698600-gatSdwwtIKEfgW7dyx0E\",\"provider\":\"BaseTen\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698600,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Here are the results:\\n- Addition: 2 + 3 = 5\\n- Multiplication: 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":null,\"usage\":{\"prompt_tokens\":307,\"completion_tokens\":30,\"total_tokens\":337,\"cost\":0.0002592,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001842,\"upstream_inference_completions_cost\":0.000075},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 454.53275ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_chutes.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_chutes.yaml
deleted file mode 100644
index afa393fa4c55842abff2b5518dcb2ef2ded76cbd..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_chutes.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 867
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"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},"provider":{"only":["chutes"]}}'
- 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-1758698435-H0YPougzRt91R1ze6vi5\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698435,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll use both add and multiply on the numbers 2 and 3 for you:\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"functions.add:0\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"functions.multiply:1\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"usage\":{\"prompt_tokens\":197,\"completion_tokens\":58,\"total_tokens\":255,\"cost\":0.00016302,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00007486,\"upstream_inference_completions_cost\":0.00008816},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.319031209s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1327
- 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 use both add and multiply on the numbers 2 and 3 for you:","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["chutes"]},"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-1758698437-OedFrHBL1MVXoBExiN0U\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698437,\"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\":290,\"completion_tokens\":31,\"total_tokens\":321,\"cost\":0.00015732,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001102,\"upstream_inference_completions_cost\":0.00004712},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.497386833s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_deepinfra.yaml
deleted file mode 100644
index 958961b62e77f30f06cfec486d1970e557336e06..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_deepinfra.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 870
- 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"}],"provider":{"only":["deepinfra"]},"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-1758698449-e3XU27OpaY4v01tTfENE\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698449,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll add and multiply 2 and 3 for you:\",\"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\":22,\"total_tokens\":193,\"cost\":0.0001295,\"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.000044},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.149145667s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1240
- 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 2 and 3 for you:","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},"provider":{"only":["deepinfra"]}}'
- 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-1758698451-RTApipZcT6NzkIESYlAi\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698451,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The calculations show:\\n- Addition: 2 + 3 = 5\\n- Multiplication: 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":272,\"completion_tokens\":28,\"total_tokens\":300,\"cost\":0.000192,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000136,\"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: 628.999792ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_fireworks.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_fireworks.yaml
deleted file mode 100644
index 68f06d43ca8ce1729625c1ffc6120f42cd38ea21..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_fireworks.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 870
- 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},"provider":{"only":["fireworks"]}}'
- 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-1758698538-768oRdq7RwJcxlmUfJWH\",\"provider\":\"Fireworks\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698538,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll perform both operations on the numbers 2 and 3 for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"functions.add:0\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"index\":1,\"id\":\"functions.multiply:1\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"usage\":{\"prompt_tokens\":210,\"completion_tokens\":56,\"total_tokens\":266,\"cost\":0.000266,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000126,\"upstream_inference_completions_cost\":0.00014},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.262341166s
- - 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 perform both operations on the numbers 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["fireworks"]},"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-1758698540-IEa4UThHQVtmw94Irrm5\",\"provider\":\"Fireworks\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698540,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Here are the results of both operations:\\n\\n- **Addition**: 2 + 3 = 5\\n- **Multiplication**: 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":284,\"completion_tokens\":35,\"total_tokens\":319,\"cost\":0.0002579,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001704,\"upstream_inference_completions_cost\":0.0000875},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 820.319917ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_groq.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_groq.yaml
deleted file mode 100644
index 03cfb078499c8f6ee2e72bfe0873c8a506396633..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_groq.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 865
- 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"}],"provider":{"only":["groq"]},"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: '{"id":"gen-1758703194-FPf5rRoE9BLPYORKxFqH","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion","created":1758703194,"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":"functions.add:0","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0},{"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1}]}}],"system_fingerprint":"fp_6e6ff3688b","usage":{"prompt_tokens":207,"completion_tokens":41,"total_tokens":248,"cost":0.00033,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000207,"upstream_inference_completions_cost":0.000123},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}'
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 672.055166ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1244
- 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":"functions.add:0","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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},"provider":{"only":["groq"]}}'
- 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: '{"id":"gen-1758703194-9mRjLG2IHARYuEkIaddx","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion","created":1758703194,"choices":[{"logprobs":null,"finish_reason":"stop","native_finish_reason":"stop","index":0,"message":{"role":"assistant","content":"- **Sum:** 5\n- **Product:** 6","refusal":null,"reasoning":null}}],"system_fingerprint":"fp_6e6ff3688b","usage":{"prompt_tokens":275,"completion_tokens":14,"total_tokens":289,"cost":0.000317,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000275,"upstream_inference_completions_cost":0.000042},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}'
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 195.868542ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_moonshotai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_moonshotai.yaml
deleted file mode 100644
index 6e66f9004b6213805eb7df235232173abbbf2535..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_moonshotai.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 871
- 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"}],"provider":{"only":["moonshotai"]},"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-1758698554-DYh3r7p91kMLHo4mmtu2\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698554,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"add:0\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"index\":1,\"id\":\"multiply:1\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"system_fingerprint\":\"fpv0_ef28f882\",\"usage\":{\"prompt_tokens\":154,\"completion_tokens\":40,\"total_tokens\":194,\"cost\":0.0001924,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000924,\"upstream_inference_completions_cost\":0.0001},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.834678708s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1216
- 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":"add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"add:0","role":"tool"},{"content":"6","tool_call_id":"multiply: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"}],"provider":{"only":["moonshotai"]},"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-1758698557-fgUr0CQ5GwrkyYqykIsE\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698557,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"**Addition result:** 5 \\n**Multiplication result:** 6\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ef28f882\",\"usage\":{\"prompt_tokens\":224,\"completion_tokens\":15,\"total_tokens\":239,\"cost\":0.0001719,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001344,\"upstream_inference_completions_cost\":0.0000375},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.637174541s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_moonshotai/turbo.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_moonshotai/turbo.yaml
deleted file mode 100644
index cd390c6dfb7afc58659154073f7e386ba4c6e19b..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_moonshotai/turbo.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 877
- 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"}],"provider":{"only":["moonshotai/turbo"]},"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-1758698621-JFAqf597jWp1t2GrGppr\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698621,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll add and multiply 2 and 3 for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"add:0\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"index\":1,\"id\":\"multiply:1\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"system_fingerprint\":\"fpv0_ec889fbb\",\"usage\":{\"prompt_tokens\":154,\"completion_tokens\":52,\"total_tokens\":206,\"cost\":0.0004448,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001848,\"upstream_inference_completions_cost\":0.00026},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.003959584s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1273
- 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 2 and 3 for you.","tool_calls":[{"id":"add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"add:0","role":"tool"},{"content":"6","tool_call_id":"multiply: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"}],"provider":{"only":["moonshotai/turbo"]},"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-1758698623-CEVDxxK1WFcL17Hz8pzv\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698623,\"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}}],\"system_fingerprint\":\"fpv0_ec889fbb\",\"usage\":{\"prompt_tokens\":236,\"completion_tokens\":31,\"total_tokens\":267,\"cost\":0.0004382,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0002832,\"upstream_inference_completions_cost\":0.000155},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.000677791s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_novita.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_novita.yaml
deleted file mode 100644
index ccfc1ab48927e23e0f3b3bc0e2b68a473ec8c75b..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_novita.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 867
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"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"}],"provider":{"only":["novita"]},"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{\"id\":\"gen-1758698581-IpWrYxQbpsNVkinx5SRG\",\"provider\":\"Novita\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698581,\"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 with the numbers 2 and 3.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"functions.add:0\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"index\":1,\"id\":\"functions.multiply:1\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":216,\"completion_tokens\":55,\"total_tokens\":271,\"cost\":0.0002671,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001296,\"upstream_inference_completions_cost\":0.0001375},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.884693625s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1336
- 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 with the numbers 2 and 3.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["novita"]},"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-1758698587-ouEpdtQcHnqfqZohdCwU\",\"provider\":\"Novita\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698587,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"2+3=5 and 2×3=6\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ef28f882\",\"usage\":{\"prompt_tokens\":239,\"completion_tokens\":13,\"total_tokens\":252,\"cost\":0.0001759,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001434,\"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: 1.945957667s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_siliconflow.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_siliconflow.yaml
deleted file mode 100644
index 8726dc847b4552d5e3d9f38b4c0a7aa6e7485fb7..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_siliconflow.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 872
- 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},"provider":{"only":["siliconflow"]}}'
- 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-1758647769-fOKoo3JM05GDSiYW1AJs\",\"provider\":\"SiliconFlow\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758647769,\"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 operations with the numbers 2 and 3.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"functions.add:0\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"index\":1,\"id\":\"functions.multiply:1\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":216,\"completion_tokens\":56,\"total_tokens\":272,\"cost\":0.00025352,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00012528,\"upstream_inference_completions_cost\":0.00012824},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.478597583s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1352
- 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 operations with the numbers 2 and 3.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["siliconflow"]},"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-1758647774-6sxiOX61bAeNf6qEllvO\",\"provider\":\"SiliconFlow\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758647774,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Both operations have been completed:\\n\\n**Addition**: 2 + 3 = 5\\n**Multiplication**: 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":308,\"completion_tokens\":30,\"total_tokens\":338,\"cost\":0.00024734,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00017864,\"upstream_inference_completions_cost\":0.0000687},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.671170458s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_together.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_together.yaml
deleted file mode 100644
index 1331c0a3defd9196f022f084ad7f66b10901122a..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_together.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 869
- 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"}],"provider":{"only":["together"]},"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-1758698610-bxmXNn260jvAKxiSLSGn\",\"provider\":\"Together\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698610,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll use both the add and multiply functions with the numbers 2 and 3 as you requested.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_hbec08da7gchmizswfdfxn46\",\"type\":\"function\",\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}},{\"index\":1,\"id\":\"call_xtlpn5knci2a84hdzceuipfi\",\"type\":\"function\",\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\":2,\\\"b\\\":3}\"}}]}}],\"usage\":{\"prompt_tokens\":218,\"completion_tokens\":61,\"total_tokens\":279,\"cost\":0.000401,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000218,\"upstream_inference_completions_cost\":0.000183},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 809.939417ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1394
- 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 use both the add and multiply functions with the numbers 2 and 3 as you requested.","tool_calls":[{"id":"call_hbec08da7gchmizswfdfxn46","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_xtlpn5knci2a84hdzceuipfi","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_hbec08da7gchmizswfdfxn46","role":"tool"},{"content":"6","tool_call_id":"call_xtlpn5knci2a84hdzceuipfi","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"}],"provider":{"only":["together"]},"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-1758698612-tOuJhtPotNA2N9NUAyrh\",\"provider\":\"Together\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698612,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Results:\\n- Addition: 2 + 3 = 5\\n- Multiplication: 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":394,\"completion_tokens\":27,\"total_tokens\":421,\"cost\":0.000475,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000394,\"upstream_inference_completions_cost\":0.000081},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 820.958667ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_wandb.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_wandb.yaml
deleted file mode 100644
index f1f746eb35e3964d93a6806bab54cbf9aa4216fc..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_kimi-k2_wandb.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 866
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"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"}],"provider":{"only":["wandb"]},"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-1758647945-EnVGeL1Maf5qzNgI1fbE\",\"provider\":\"WandB\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758647945,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll calculate both the sum and the product for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"functions.add:0\",\"type\":\"function\",\"index\":0,\"function\":{\"name\":\"add\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}},{\"id\":\"functions.multiply:1\",\"type\":\"function\",\"index\":1,\"function\":{\"name\":\"multiply\",\"arguments\":\"{\\\"a\\\": 2, \\\"b\\\": 3}\"}}]}}],\"usage\":{\"prompt_tokens\":209,\"completion_tokens\":52,\"total_tokens\":261,\"cost\":0.00049015,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":192,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00028215,\"upstream_inference_completions_cost\":0.000208},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 405.628375ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1316
- 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 calculate both the sum and the product for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["wandb"]},"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-1758647948-T3UQ5OpJvmrMtQ8wcnW7\",\"provider\":\"WandB\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758647948,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"**Sum:** 2 + 3 = 5 \\n**Product:** 2 × 3 = 6\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":328,\"completion_tokens\":24,\"total_tokens\":352,\"cost\":0.0005388,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":192,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0004428,\"upstream_inference_completions_cost\":0.000096},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 330.451166ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4.yaml
index f6c740f021283cf377e970d4a961923fdabfee70..b65448ce5b8f1773eba56204b349607f0eb7825b 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4.yaml
@@ -24,43 +24,43 @@ interactions:
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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"choices":[{"index":0,"delta":{"role":"assistant","content":"d multiply the","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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"choices":[{"index":0,"delta":{"role":"assistant","content":" 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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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":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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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":[{"index":0,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01DggK8Fb3WN547SkYe2SETF","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":"{\"a\": 2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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":", \"b\": 3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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":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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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":[{"index":1,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_019WGJzs15v8WdzV8Eb89Ltc","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":"{\"a\": "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"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":1,"type":"function","function":{"arguments":", \"b\": 3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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: {"id":"gen-1758709915-77KfZLZMAktDJNBi48QY","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709915,"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]
@@ -69,7 +69,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 3.11887975s
+ duration: 1.839061s
- id: 1
request:
proto: HTTP/1.1
@@ -77,7 +77,7 @@ interactions:
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}'
+ 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_01DggK8Fb3WN547SkYe2SETF","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_019WGJzs15v8WdzV8Eb89Ltc","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_01DggK8Fb3WN547SkYe2SETF","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_019WGJzs15v8WdzV8Eb89Ltc","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
@@ -93,23 +93,27 @@ interactions:
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-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"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-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"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-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"choices":[{"index":0,"delta":{"role":"assistant","content":"The results","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-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"choices":[{"index":0,"delta":{"role":"assistant","content":" are","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-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n- ","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-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"choices":[{"index":0,"delta":{"role":"assistant","content":"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+ data: {"id":"gen-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"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":""},"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: {"id":"gen-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+ data: {"id":"gen-1758709918-LEyDStzenEeonpqtYmNQ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709918,"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]
@@ -118,4 +122,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 3.09562175s
+ duration: 1.946299042s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_amazon-bedrock.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_amazon-bedrock.yaml
deleted file mode 100644
index 1436ff46cd1d69786a91ea03c4199223182ecd6e..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_amazon-bedrock.yaml
+++ /dev/null
@@ -1,133 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 931
- 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"}],"provider":{"only":["amazon-bedrock"]},"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-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":" add and multiply the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":" 2 an","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":"d 3 for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_bdrk_01K7wpQi9Yovsdmi5etWgAFd","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"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-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"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-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"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-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_bdrk_01Am4YPKG82JDEaf5fgMVRLM","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"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-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\"a\": 2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"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-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"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-1758703536-4vhJkPCJGMrh5CnnHJ3L","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703536,"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: 1.659447667s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1449
- 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_bdrk_01K7wpQi9Yovsdmi5etWgAFd","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_bdrk_01Am4YPKG82JDEaf5fgMVRLM","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_bdrk_01K7wpQi9Yovsdmi5etWgAFd","role":"tool"},{"content":"6","tool_call_id":"toolu_bdrk_01Am4YPKG82JDEaf5fgMVRLM","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},"provider":{"only":["amazon-bedrock"]},"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-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":" results","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":" are","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n- ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":"2 + 3 = ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"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-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"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-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703538-BPO0LDwyWlmhK6TiUTV2","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703538,"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: 2.371419125s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_anthropic.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_anthropic.yaml
deleted file mode 100644
index 4fe71c7d6ef5822b405d5d79334b9fd5fcea4591..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_anthropic.yaml
+++ /dev/null
@@ -1,123 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 926
- 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"}],"provider":{"only":["anthropic"]},"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_017ez6Y11aFqR8qmZrK7Btae","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_019WhQ1ADmF3pqwZB7JowE1A","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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-1758703483-LOuy7QTH8TDyNbgY30TV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703483,"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: 2.673370291s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1424
- 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_017ez6Y11aFqR8qmZrK7Btae","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_019WhQ1ADmF3pqwZB7JowE1A","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_017ez6Y11aFqR8qmZrK7Btae","role":"tool"},{"content":"6","tool_call_id":"toolu_019WhQ1ADmF3pqwZB7JowE1A","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"}],"provider":{"only":["anthropic"]},"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-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":" results are:\n- Adding 2 and 3: **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":"5**\n- Multiplying 2 and 3: **6","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703487-phKFalHgfAT2v5vbd7KB","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703487,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":700,"completion_tokens":35,"total_tokens":735,"cost":0.002625,"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.000525},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.686955208s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex.yaml
deleted file mode 100644
index c389068c0467683435d0be3c56339d7623a120df..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex.yaml
+++ /dev/null
@@ -1,131 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 930
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":"d multiply the numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":" 2 and 3 for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01DnmZCpDRnkL5Vr8MhcYtS9","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":", \"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\": 3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_0116gPZpAB1R3ic89xkD3X7f","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\"a\": 2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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-1758703430-Rk2SW4cOp81eByfgrDeu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703430,"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: 1.211935542s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1448
- 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_01DnmZCpDRnkL5Vr8MhcYtS9","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_0116gPZpAB1R3ic89xkD3X7f","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_01DnmZCpDRnkL5Vr8MhcYtS9","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_0116gPZpAB1R3ic89xkD3X7f","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"}],"provider":{"only":["google-vertex"]},"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-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"choices":[{"index":0,"delta":{"role":"assistant","content":" results are","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n- ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"choices":[{"index":0,"delta":{"role":"assistant","content":"2 + 3 = ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"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-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"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-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703432-un1Z1u4sB9njqU92TwRC","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703432,"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: 1.828443167s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex/europe.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex/europe.yaml
deleted file mode 100644
index 722ea41657c973bf61e908305808403c761f022f..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex/europe.yaml
+++ /dev/null
@@ -1,131 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 937
- 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"}],"provider":{"only":["google-vertex/europe"]},"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-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"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-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":"d multiply the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":" 2 and 3 for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_014BnWyeLJKnwd8vwN2Tqb1P","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"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-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\"a\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":": 2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"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-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_014kjgdkPQosBq4VdJzKeBhS","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"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-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\"a\": 2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"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-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"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-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"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-1758703507-qvBSOm5047lKGDodXLIc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703507,"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: 1.564185917s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1455
- 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_014BnWyeLJKnwd8vwN2Tqb1P","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_014kjgdkPQosBq4VdJzKeBhS","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_014BnWyeLJKnwd8vwN2Tqb1P","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_014kjgdkPQosBq4VdJzKeBhS","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"}],"provider":{"only":["google-vertex/europe"]},"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-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"choices":[{"index":0,"delta":{"role":"assistant","content":"The results","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"choices":[{"index":0,"delta":{"role":"assistant","content":" are","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n- ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"choices":[{"index":0,"delta":{"role":"assistant","content":"2 + 3 = ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"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-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"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-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703510-FwkwEiXpP6XDMIhz6pBL","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703510,"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: 1.661794166s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex/global.yaml
deleted file mode 100644
index f084d148e6af266b8a62a7be8433e85d19edb268..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_claude-sonnet-4_google-vertex/global.yaml
+++ /dev/null
@@ -1,131 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 937
- 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"}],"provider":{"only":["google-vertex/global"]},"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":"d multiply the numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":" 2 and 3 for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01SHr5ifKaWhjY1X96UmUrYz","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":", \"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_013eyJswYZfviqphDrSVgvDC","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\"a\": 2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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-1758703449-yeZI523TurVN5Lz44q5X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703449,"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: 1.428779375s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1455
- 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_01SHr5ifKaWhjY1X96UmUrYz","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_vrtx_013eyJswYZfviqphDrSVgvDC","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_vrtx_01SHr5ifKaWhjY1X96UmUrYz","role":"tool"},{"content":"6","tool_call_id":"toolu_vrtx_013eyJswYZfviqphDrSVgvDC","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"}],"provider":{"only":["google-vertex/global"]},"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-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"choices":[{"index":0,"delta":{"role":"assistant","content":" results","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"choices":[{"index":0,"delta":{"role":"assistant","content":" are:\n- ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"choices":[{"index":0,"delta":{"role":"assistant","content":"2 + 3 = ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"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-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"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-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703452-Yj7CAUKZnhqzvljvzK2Q","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703452,"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: 2.222145875s
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
index e8ed6541566fba76e914a827988b774f2b63168f..c44f43819505f37c3022402729a28c69951c5d3d 100644
--- 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
@@ -24,33 +24,33 @@ interactions:
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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_0746","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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"call_2d55","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-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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: {"id":"gen-1758709976-fGaJEF1Ts20pnf1WfLHd","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709976,"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]
@@ -59,7 +59,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 959.348834ms
+ duration: 857.035125ms
- id: 1
request:
proto: HTTP/1.1
@@ -67,7 +67,7 @@ interactions:
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}'
+ 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_0746","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_2d55","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_0746","role":"tool"},{"content":"6","tool_call_id":"call_2d55","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
@@ -83,37 +83,39 @@ interactions:
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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":" addition","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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":" 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":" and ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"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-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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":" 3","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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":" 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":"5**,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"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":" and the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":"5\n","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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":"The multiplication","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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":" 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":" and ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"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-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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":" 3","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-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":" 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":"stop","native_finish_reason":"stop","logprobs":null}]}
+ data: {"id":"gen-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"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":""},"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: {"id":"gen-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+ data: {"id":"gen-1758709981-XGVqtgKr6n3wbsOWUqDh","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709982,"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]
@@ -122,4 +124,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 886.54375ms
+ duration: 851.251167ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_deepseek-chat-v3.1-free_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_deepseek-chat-v3.1-free_deepinfra.yaml
deleted file mode 100644
index a06b2777885174e0bd53c59ed2f43ceb805e7b43..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_deepseek-chat-v3.1-free_deepinfra.yaml
+++ /dev/null
@@ -1,127 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 933
- 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"}],"provider":{"only":["deepinfra"]},"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-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"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-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"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-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"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-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":" 3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":" simultaneously as","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":" requested.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_1218","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"call_c6a4","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"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-1758704111-dT300jmM3hLhZq4SNDlo","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704111,"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: 1.01682225s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1367
- 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 as requested.","tool_calls":[{"id":"call_1218","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_c6a4","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_1218","role":"tool"},{"content":"6","tool_call_id":"call_c6a4","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"}],"provider":{"only":["deepinfra"]},"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-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"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-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":" 2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":" and ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"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-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":":","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":"5**\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":"The multiplication","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":" of ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"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-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":" 3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":" gives:","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":" **6","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758704118-XmJ4FJpThUiis6ky0Ajg","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704118,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":310,"completion_tokens":27,"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}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 774.504125ms
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
index cd2e4cb2491069870d9918d978443c3d83a1f9cb..c080b636c3e627133d3fd9e7874ca24a6417db3a 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash.yaml
@@ -24,9 +24,9 @@ interactions:
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-1758709949-Jrfip9PNq2gmUbfd290T","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_kM776wR9n8RFAaTIVrUZ","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"index":1,"id":"tool_1_multiply_j6xBsBDWWsMKmTQQlIrS","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: {"id":"gen-1758709949-Jrfip9PNq2gmUbfd290T","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709949,"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.00001455,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00000855,"upstream_inference_completions_cost":0.000006},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -35,7 +35,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 820.145667ms
+ duration: 1.501293708s
- id: 1
request:
proto: HTTP/1.1
@@ -43,7 +43,7 @@ interactions:
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}'
+ 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_kM776wR9n8RFAaTIVrUZ","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_j6xBsBDWWsMKmTQQlIrS","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_kM776wR9n8RFAaTIVrUZ","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_j6xBsBDWWsMKmTQQlIrS","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
@@ -59,13 +59,13 @@ interactions:
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-1758709951-2k3X2JGEXBpfCkaAC8Sa","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709951,"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-1758709951-2k3X2JGEXBpfCkaAC8Sa","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709951,"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-1758709951-2k3X2JGEXBpfCkaAC8Sa","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709951,"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: {"id":"gen-1758709951-2k3X2JGEXBpfCkaAC8Sa","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709951,"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]
@@ -74,4 +74,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 919.224541ms
+ duration: 550.195459ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash_google-ai-studio.yaml
deleted file mode 100644
index 861bf1d9440211924157335a0bfc7d8db152aa83..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,77 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 935
- 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"}],"provider":{"only":["google-ai-studio"]},"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-1758703934-Rtb5kDReumqEhPdGCARc","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703934,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_QUgtUEa5j5Sy0298PIiK","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"index":1,"id":"tool_1_multiply_qI2Q7dpLvKyYS8vuhjhe","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703934-Rtb5kDReumqEhPdGCARc","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703934,"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: 774.011208ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1378
- 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_QUgtUEa5j5Sy0298PIiK","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_qI2Q7dpLvKyYS8vuhjhe","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_QUgtUEa5j5Sy0298PIiK","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_qI2Q7dpLvKyYS8vuhjhe","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"}],"provider":{"only":["google-ai-studio"]},"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-1758703934-ood4uQFxP3G0U7aQ85Cb","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703934,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703934-ood4uQFxP3G0U7aQ85Cb","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703934,"choices":[{"index":0,"delta":{"role":"assistant","content":" sum of 2 and 3 is 5, and the product of "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703934-ood4uQFxP3G0U7aQ85Cb","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703934,"choices":[{"index":0,"delta":{"role":"assistant","content":"2 and 3 is 6.\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703934-ood4uQFxP3G0U7aQ85Cb","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703934,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":111,"completion_tokens":26,"total_tokens":137,"cost":0.0000215,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000111,"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: 690.55875ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash_google-vertex.yaml
deleted file mode 100644
index e6b10fdeac8d05a8bcc189813c7a7eb2fe175ab5..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.0-flash_google-vertex.yaml
+++ /dev/null
@@ -1,77 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 932
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703947-wpyNk0Zt4KfcjxKpFNbh","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703947,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_4ywtlwXZLBlEzNwsgl7X","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"index":1,"id":"tool_1_multiply_IO1TeYk7qGsd8TUNbTMo","type":"function","function":{"name":"multiply","arguments":"{\"b\":3,\"a\":2}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703947-wpyNk0Zt4KfcjxKpFNbh","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703947,"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.00001455,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00000855,"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: 1.76056725s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1375
- 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_4ywtlwXZLBlEzNwsgl7X","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_IO1TeYk7qGsd8TUNbTMo","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_4ywtlwXZLBlEzNwsgl7X","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_IO1TeYk7qGsd8TUNbTMo","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"}],"provider":{"only":["google-vertex"]},"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-1758703949-vSEB1mgAvJLaK3sCOhpF","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703949,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703949-vSEB1mgAvJLaK3sCOhpF","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703949,"choices":[{"index":0,"delta":{"role":"assistant","content":" sum of 2 and 3 is 5, and the product of "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703949-vSEB1mgAvJLaK3sCOhpF","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703949,"choices":[{"index":0,"delta":{"role":"assistant","content":"2 and 3 is 6.\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703949-vSEB1mgAvJLaK3sCOhpF","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703949,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":110,"completion_tokens":26,"total_tokens":136,"cost":0.0000321,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000165,"upstream_inference_completions_cost":0.0000156},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.658690625s
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
index 81d4b2d655813c680deeec3c5947a577b8cbc0c2..1d65044a4ca28e396a695bb1f1081513fca03791 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash.yaml
@@ -24,9 +24,9 @@ interactions:
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-1758709941-wUZ3Js3vHrXl2SUI32XZ","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709941,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_eyyV4RxUnSVtn1uekr0y","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"index":1,"id":"tool_1_multiply_J7MkYXQJ41WhyQi3YALT","type":"function","function":{"name":"multiply","arguments":"{\"b\":3,\"a\":2}"}}]},"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: {"id":"gen-1758709941-wUZ3Js3vHrXl2SUI32XZ","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709941,"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]
@@ -35,7 +35,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 937.291875ms
+ duration: 1.075844333s
- id: 1
request:
proto: HTTP/1.1
@@ -43,7 +43,7 @@ interactions:
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}'
+ 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_eyyV4RxUnSVtn1uekr0y","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_J7MkYXQJ41WhyQi3YALT","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_eyyV4RxUnSVtn1uekr0y","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_J7MkYXQJ41WhyQi3YALT","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
@@ -59,13 +59,13 @@ interactions:
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-1758709942-po3gKBzyBk0FlZ3yzImu","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709942,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","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-1758709942-po3gKBzyBk0FlZ3yzImu","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709942,"choices":[{"index":0,"delta":{"role":"assistant","content":" have added 2 and 3 to get 5, and multiplied 2 and 3","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-1758709942-po3gKBzyBk0FlZ3yzImu","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709942,"choices":[{"index":0,"delta":{"role":"assistant","content":" to get 6.","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: {"id":"gen-1758709942-po3gKBzyBk0FlZ3yzImu","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709942,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":108,"completion_tokens":25,"total_tokens":133,"cost":0.0000949,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000324,"upstream_inference_completions_cost":0.0000625},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -74,4 +74,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 708.376417ms
+ duration: 610.040875ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-ai-studio.yaml
deleted file mode 100644
index 3d7e952db6f6b1627f20e5e6ac3f18855f3f8ccf..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,75 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 931
- 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},"provider":{"only":["google-ai-studio"]},"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-1758703832-Kmoor1Ommbtko0KqlD0k","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703832,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_5tjz0FLvReghvdKlI11s","type":"function","function":{"name":"add","arguments":"{\"b\":3,\"a\":2}"}},{"index":1,"id":"tool_1_multiply_uyRMwfRb8ftFmPfJUYtm","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703832-Kmoor1Ommbtko0KqlD0k","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703832,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":121,"completion_tokens":36,"total_tokens":157,"cost":0.0001263,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000363,"upstream_inference_completions_cost":0.00009},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 770.896334ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1374
- 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_5tjz0FLvReghvdKlI11s","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"tool_1_multiply_uyRMwfRb8ftFmPfJUYtm","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_5tjz0FLvReghvdKlI11s","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_uyRMwfRb8ftFmPfJUYtm","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"}],"provider":{"only":["google-ai-studio"]},"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-1758703832-xtntzea51eYK9yBP7VHs","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703832,"choices":[{"index":0,"delta":{"role":"assistant","content":"The sum is ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703832-xtntzea51eYK9yBP7VHs","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703832,"choices":[{"index":0,"delta":{"role":"assistant","content":"5 and the product is 6.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703832-xtntzea51eYK9yBP7VHs","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703832,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":217,"completion_tokens":11,"total_tokens":228,"cost":0.0000926,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000651,"upstream_inference_completions_cost":0.0000275},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 477.776292ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-vertex.yaml
deleted file mode 100644
index fbc7b356eacda6a272ae91a5092fd676f394faee..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-vertex.yaml
+++ /dev/null
@@ -1,77 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 928
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703839-IIjeKtoyVSa9GsVrQ3uv","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703839,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_KH8U9wsrnBUhs7Pa65Bq","type":"function","function":{"name":"add","arguments":"{\"b\":3,\"a\":2}"}},{"index":1,"id":"tool_1_multiply_TXFdxr9GMAbGT1HU4qV0","type":"function","function":{"name":"multiply","arguments":"{\"b\":3,\"a\":2}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703839-IIjeKtoyVSa9GsVrQ3uv","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703839,"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: 923.704583ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1371
- 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_KH8U9wsrnBUhs7Pa65Bq","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"tool_1_multiply_TXFdxr9GMAbGT1HU4qV0","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_KH8U9wsrnBUhs7Pa65Bq","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_TXFdxr9GMAbGT1HU4qV0","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"}],"provider":{"only":["google-vertex"]},"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-1758703840-KHzPd5w0mUsWCcuGBBhQ","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703840,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703840-KHzPd5w0mUsWCcuGBBhQ","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703840,"choices":[{"index":0,"delta":{"role":"assistant","content":" have added 2 and 3 to get 5, and multiplied 2 and 3 to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703840-KHzPd5w0mUsWCcuGBBhQ","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703840,"choices":[{"index":0,"delta":{"role":"assistant","content":" get 6.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703840-KHzPd5w0mUsWCcuGBBhQ","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703840,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":110,"completion_tokens":25,"total_tokens":135,"cost":0.0000955,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000033,"upstream_inference_completions_cost":0.0000625},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 818.415916ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-vertex/global.yaml
deleted file mode 100644
index e15d40e9c435b432e07eaa554f9ce28014ebd2a4..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gemini-2.5-flash_google-vertex/global.yaml
+++ /dev/null
@@ -1,77 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 935
- 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"}],"provider":{"only":["google-vertex/global"]},"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-1758703824-EYBJHSc1zhaT9hokrllR","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703824,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_add_4U7KVs3rImd9TqEeWMfD","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"index":1,"id":"tool_1_multiply_BziO6vjr0p9rhYMnQXfR","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703824-EYBJHSc1zhaT9hokrllR","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703824,"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: 793.75175ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1378
- 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_4U7KVs3rImd9TqEeWMfD","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"tool_1_multiply_BziO6vjr0p9rhYMnQXfR","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"tool_0_add_4U7KVs3rImd9TqEeWMfD","role":"tool"},{"content":"6","tool_call_id":"tool_1_multiply_BziO6vjr0p9rhYMnQXfR","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"}],"provider":{"only":["google-vertex/global"]},"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-1758703825-B9gyHlo164336ZrlgRqM","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703825,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703825-B9gyHlo164336ZrlgRqM","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703825,"choices":[{"index":0,"delta":{"role":"assistant","content":" have added 2 and 3 to get 5, and multiplied 2 and 3 to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703825-B9gyHlo164336ZrlgRqM","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703825,"choices":[{"index":0,"delta":{"role":"assistant","content":" get 6.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703825-B9gyHlo164336ZrlgRqM","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703825,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":112,"completion_tokens":25,"total_tokens":137,"cost":0.0000961,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000336,"upstream_inference_completions_cost":0.0000625},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 687.913917ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_glm-4.5.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_glm-4.5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..feb9f8397386d77d84abc1dd3566563f61a35ef4
--- /dev/null
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_glm-4.5.yaml
@@ -0,0 +1,469 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 879
+ 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":"z-ai/glm-4.5","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-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.text","text":" wants","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" numbers","reasoning_details":[{"type":"reasoning.text","text":" numbers","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameters","reasoning_details":[{"type":"reasoning.text","text":" parameters","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":").\n\n","reasoning_details":[{"type":"reasoning.text","text":").\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n","reasoning_details":[{"type":"reasoning.text","text":"\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n","reasoning_details":[{"type":"reasoning.text","text":"\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.text","text":" call","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" these","reasoning_details":[{"type":"reasoning.text","text":" these","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameters","reasoning_details":[{"type":"reasoning.text","text":" parameters","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" add","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_11419dcf014f46c883686394","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\": 2, \"b\": 3}"}}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_b36e6bcb9b9e4e7f91a64373","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\": 2, \"b\": 3}"}}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+
+ data: {"id":"gen-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"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-1758710059-MzSwHAl3qGpssCqLe1Dn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710059,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":282,"completion_tokens":141,"total_tokens":423,"cost":0.00045833,"is_byok":false,"prompt_tokens_details":{"cached_tokens":43,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00014813,"upstream_inference_completions_cost":0.0003102},"completion_tokens_details":{"reasoning_tokens":78,"image_tokens":0}}}
+
+ data: [DONE]
+
+ headers:
+ Content-Type:
+ - text/event-stream
+ status: 200 OK
+ code: 200
+ duration: 1.004246042s
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 1379
+ 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":"\n\nI''ll add and multiply the numbers 2 and 3 for you.\n","tool_calls":[{"id":"call_11419dcf014f46c883686394","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_b36e6bcb9b9e4e7f91a64373","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_11419dcf014f46c883686394","role":"tool"},{"content":"6","tool_call_id":"call_b36e6bcb9b9e4e7f91a64373","role":"tool"}],"model":"z-ai/glm-4.5","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-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" numbers","reasoning_details":[{"type":"reasoning.text","text":" numbers","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instructed","reasoning_details":[{"type":"reasoning.text","text":" instructed","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":\n\n","reasoning_details":[{"type":"reasoning.text","text":":\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n","reasoning_details":[{"type":"reasoning.text","text":"\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" present","reasoning_details":[{"type":"reasoning.text","text":" present","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.text","text":" results","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearly","reasoning_details":[{"type":"reasoning.text","text":" clearly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"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}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" results","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" of","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" adding","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiplying","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" are","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"-","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"Add","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"ition","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"**:","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" +","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" =","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"5","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"-","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"Multip","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"lication","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"**:","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" =","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"6","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+ data: {"id":"gen-1758710063-wjQuAecJsCzv4dc3SVHy","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710063,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":356,"completion_tokens":102,"total_tokens":458,"cost":0.00041644,"is_byok":false,"prompt_tokens_details":{"cached_tokens":44,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00019204,"upstream_inference_completions_cost":0.0002244},"completion_tokens_details":{"reasoning_tokens":52,"image_tokens":0}}}
+
+ data: [DONE]
+
+ headers:
+ Content-Type:
+ - text/event-stream
+ status: 200 OK
+ code: 200
+ duration: 1.324348042s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5.yaml
index 7be1c561d7c9d5dca71a1645e2928400063d75a5..4989194032a0802edbc0b0abc6a50a61c5ec840c 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5.yaml
@@ -24,45 +24,413 @@ interactions:
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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Executing","reasoning_details":[{"type":"reasoning.summary","summary":"**Executing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" arithmetic","reasoning_details":[{"type":"reasoning.summary","summary":" arithmetic","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":[{"index":1,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" operations","reasoning_details":[{"type":"reasoning.summary","summary":" operations","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":[{"index":1,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" respond","reasoning_details":[{"type":"reasoning.summary","summary":" respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" assistant","reasoning_details":[{"type":"reasoning.summary","summary":" assistant","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" developer","reasoning_details":[{"type":"reasoning.summary","summary":" developer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.summary","summary":"'s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instruction","reasoning_details":[{"type":"reasoning.summary","summary":" instruction","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":[{"index":2,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.summary","summary":" add","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.summary","summary":" multiply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simultaneously","reasoning_details":[{"type":"reasoning.summary","summary":" simultaneously","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" task","reasoning_details":[{"type":"reasoning.summary","summary":" task","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" involves","reasoning_details":[{"type":"reasoning.summary","summary":" involves","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" adding","reasoning_details":[{"type":"reasoning.summary","summary":" adding","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiplying","reasoning_details":[{"type":"reasoning.summary","summary":" multiplying","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" plus","reasoning_details":[{"type":"reasoning.summary","summary":" plus","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" allows","reasoning_details":[{"type":"reasoning.summary","summary":" allows","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" called","reasoning_details":[{"type":"reasoning.summary","summary":" called","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" at","reasoning_details":[{"type":"reasoning.summary","summary":" at","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.summary","summary":" same","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.summary","summary":" time","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.summary","summary":" add","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.summary","summary":" multiply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" together","reasoning_details":[{"type":"reasoning.summary","summary":" together","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" operate","reasoning_details":[{"type":"reasoning.summary","summary":" operate","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" independently","reasoning_details":[{"type":"reasoning.summary","summary":" independently","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" run","reasoning_details":[{"type":"reasoning.summary","summary":" run","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parallel","reasoning_details":[{"type":"reasoning.summary","summary":" parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" despite","reasoning_details":[{"type":"reasoning.summary","summary":" despite","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" prompt","reasoning_details":[{"type":"reasoning.summary","summary":" prompt","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" possibly","reasoning_details":[{"type":"reasoning.summary","summary":" possibly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" suggesting","reasoning_details":[{"type":"reasoning.summary","summary":" suggesting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sequential","reasoning_details":[{"type":"reasoning.summary","summary":" sequential","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" approach","reasoning_details":[{"type":"reasoning.summary","summary":" approach","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.summary","summary":" This","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" will","reasoning_details":[{"type":"reasoning.summary","summary":" will","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" following","reasoning_details":[{"type":"reasoning.summary","summary":" following","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instructions","reasoning_details":[{"type":"reasoning.summary","summary":" instructions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" correctly","reasoning_details":[{"type":"reasoning.summary","summary":" correctly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Calling","reasoning_details":[{"type":"reasoning.summary","summary":"**Calling","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parallel","reasoning_details":[{"type":"reasoning.summary","summary":" parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".parallel","reasoning_details":[{"type":"reasoning.summary","summary":".parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" two","reasoning_details":[{"type":"reasoning.summary","summary":" two","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" adding","reasoning_details":[{"type":"reasoning.summary","summary":" adding","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 2","reasoning_details":[{"type":"reasoning.summary","summary":" 2","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 3","reasoning_details":[{"type":"reasoning.summary","summary":" 3","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiplying","reasoning_details":[{"type":"reasoning.summary","summary":" multiplying","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 2","reasoning_details":[{"type":"reasoning.summary","summary":" 2","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 3","reasoning_details":[{"type":"reasoning.summary","summary":" 3","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" After","reasoning_details":[{"type":"reasoning.summary","summary":" After","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" getting","reasoning_details":[{"type":"reasoning.summary","summary":" getting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" present","reasoning_details":[{"type":"reasoning.summary","summary":" present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearly","reasoning_details":[{"type":"reasoning.summary","summary":" clearly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Sum","reasoning_details":[{"type":"reasoning.summary","summary":" Sum","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 5","reasoning_details":[{"type":"reasoning.summary","summary":" 5","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Product","reasoning_details":[{"type":"reasoning.summary","summary":" Product","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 6","reasoning_details":[{"type":"reasoning.summary","summary":" 6","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.summary","summary":" It","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" essential","reasoning_details":[{"type":"reasoning.summary","summary":" essential","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" commentary","reasoning_details":[{"type":"reasoning.summary","summary":" commentary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" these","reasoning_details":[{"type":"reasoning.summary","summary":" these","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calls","reasoning_details":[{"type":"reasoning.summary","summary":" calls","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" either","reasoning_details":[{"type":"reasoning.summary","summary":" either","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" individually","reasoning_details":[{"type":"reasoning.summary","summary":" individually","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parallel","reasoning_details":[{"type":"reasoning.summary","summary":" parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" efficiency","reasoning_details":[{"type":"reasoning.summary","summary":" efficiency","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" proceed","reasoning_details":[{"type":"reasoning.summary","summary":" proceed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" single","reasoning_details":[{"type":"reasoning.summary","summary":" single","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".parallel","reasoning_details":[{"type":"reasoning.summary","summary":".parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" keep","reasoning_details":[{"type":"reasoning.summary","summary":" keep","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" output","reasoning_details":[{"type":"reasoning.summary","summary":" output","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.summary","summary":" simple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" focused","reasoning_details":[{"type":"reasoning.summary","summary":" focused","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let","reasoning_details":[{"type":"reasoning.summary","summary":" Let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" started","reasoning_details":[{"type":"reasoning.summary","summary":" started","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo08kR795TamMo8KiXRZ_gz2QTKkoALWeKgy8GAc822Oi8BUcGhQ30UFNd7LK5B0pv3ynYRtUEAYd70cowxoH9B02ijv_HWilASr7ITkXxq8j2LuW21KF3TipRRO9ujAUDZ8J8o0620usYvufUsboEWsOi8L4_WhCP8_iS4Dkf2X-KI7mzO1EIP7BBeIYmLzunpz-b5wCh-a6XaAMcir-9ImIqlkC4vzlYzlb3EpiNbnHe3Xd5MXC1fIqwNcmYpmtNcyIedy2rypORTycUej5-_CRLQ5TPFJZHGXx-HNBPltVL2AKycaxmwFivDA4jTZU4uf9kdHZogMtab9GMc2Sj-zhF0JMfE5E-9Z1miHxoeCYidduikQbDd47AVCxwtvG2K2sdC87EBlGTajOjvoMJAvOPjJ-reRR8uj_Jc4Ehot4W2BqdUMDSdj8qyXu2gtqRMXTeGOOjQdcpi-cUVy4-iaiLo050XuqqI0wuIn42oE8KPnlIJqSk5OLKXsGDHFHpySLqpV9g8pEcDFHzwF9LPRDmf2YKxokcsd9grt0jDanxnHLq_loWEdXLac66SAjw6EoF3AT84ZKIQF6NxaalEFoFA1f9OX_GHlnT56DFWWCCshBX0YPVMNOj8-VBDJRtHoyT5gAslWO8YsVqlsumygC5P0jEg8mVDI7ZjAgUkagGHWL8f84xoB16dhAqIeig6tciX7ZjBgaNKLqHJ8BJdhFZmo18bHpdNFgdIu-Agwho-kDRztIYUJrtiLWNWI4U8kqvQbiKjsAa0qPvNmLTUenjTkQ-VRefws6H04SzceMzsFv90pGcS4HmCuGlbKxWHS4Iz7WbHStc_j3rRSCo_C6cnYisDVCHBfHLAc9cFkudpm3B6D7wrd-BDWB7C1BVi-C5wQqUer40wnLalYNK-9lPk4H07IaLGXJFC1J70kqoTs-AohD5wIdx6ZiQR573T8yBjm2Zm352-hl7CWI6Wlq5-ybwyPY0z5-df1BzZhyWcio9hGOg7FSXl2CiQlsX-OBXkYhwJF4WetYVbtRRaSq4i_-ugdr0OWMyv7sHp9hplNc5lx8SrkYlFAB7pa586dt6mvsPO1Rx-S2jCZxsUHBrsEq-JYvNgnVL_yreiUn8qpu-fm5fMtH-ywYO-0cfI2WU2UV0FhP37bH3NxoYmlUuUtLG1y_Ja-59_n32Z4_Nr5e4zgNXp2DExsIydwds3ouu16mFqNRBNnM2KKSKtx4VupU_9i9ZCeIotuopS9rYW_LzjvuBxCSuFgKBUeXk8BYB0PBtC1pWp5DNg-9oNNhlkWiBl42T6PcOro-9Yz2UroPgr2aa_KahKtVPBUIYIOmNBGSho9wpe0gIuslHm4KMyAxBgTWGWT4ZYFxGwFCZWxVSU3RDUVSHjHTfXYnj_RqmFk8LhpMOzFVpgsadHRzH8bHDouZoVODHHwmGYBa0Lf8WxMUHOaviO6uhp5QCa4m1kNjqPp8YwaZ69P3jUzU0ls0yhWt9-eMpjj6Ch-9Ft75g_N_sjT5a9PAlO_6EfFOWqOCz-BjkCgso6J6X-J-Pfz80X91FfSWKOsMi-wptDJfa6xuZTxZx8phe_meuh-O0UZ9OUxcEtPwh-kJWAyfJCby4WJcDkOKNl9p2NtBLnNRQAnHp7qzsf0SlpDPIzgtSPbkMol7Fs9NommB0HUjLPff9DKMliEOitW3lAoWUh2cCke9ED9gNupPr-7ca-_kF4SUTlVLIGzFaovWdFM0p9e-tBvTuTgRbISmh4JKt7Tj53CqSu4a74ORr5ppAbzPYhtLcY1rLNPqA2DKNhtfy5z9KBvrqISNy8CE9laIOovTiH1n7c9Q2Xqt2eRLQnPcsy-7GiXv5GTOMYbKLCYapQ8uPT_jhjcarxnyAEV1MJCwXTlyZOeHb0mmr7eGCy__2H9-g7hSSlJrEUl-ckKoWsPLT9EcWgpC3P0TXlZJkUriwVV5kFqBT0o4GjD225YL6MTZatr3be4USo_4AWCVwm7_2CvidxadWmkcLLH1eKtjrP9AplBLvid7UvVmbTyOhOo8tZl2D5tsQgShpTnnfP_eRIXkyaoaQvsnUFN66883cia7VyuZeJtTYecX6ZT9i2Gd-GWgB0uGLffLZfbtESb-43mR7vgOx3UFDrnx8xwQwe4IvG3WJLObqw3-b9mum6rfreNvo727B76vcylW2INRqLjHtDmEdCGk9PRXmQ8RwvKNN4I2KOnWm2LDDSD3_yrTwPni6oDSDiDAVWN6ezffGTcX5xsQCOoLK8JR-DyjW6O47AatIfpQ4_IW22DoCfDaYCWbKiqPL0zzuWbXIWxH5aD8dkHdJvnY0F8p4rCwXcvQVtPWoYOyEmjfenlyhPrT2fN7omjvMY3jIQF9023c93FVCuaFgH5VMYmM2z8ofEbH_U3jI8pg6ZMqP2I6fk6S9dthUySojMhjw3q0aAz_zvA-S3LF4dlTphamGbnkyi6I5aqZ4KN8mA7Vkti4JgUBUFlYFDylqnajfavLb_R10WurhFaYS4868jGbRaAg6eGfRZ1obeqKY1FN_DJM29HsD6w6bW8gdC28vzi8tctvU_0y-jNnf9w87Cn1RKOBxQED-JQ4CUhcHvtCwZPW7mxWwONRUwh6BMK-Rp1NZICLd3Cwa5QAi9WnOmCQRCE1OYsL5d6Yavu1tQ-UMZv2hpD3QjFuvrhCDWRBaeZS99CtjplG28ppZkr8rU4gLRJVe9lIX1naUrz6miWlr7U-jXMqmijoa_1yytH1OhUBGTH8oOoeob9wwVGKtrbL4GFHUfIdpbADglqoqfd6TA40EbVDipVhqAKu8zpPWHc10xMZyZSmaPKjFAXTIXBA3i2gln4aXpt7FwoqF9cbu0VZHMH2Rnp_csx1kBdlC-xZ7ikH-xn_O8uR_Xso53ZiWMt5f-QwfFJzi4w9ohU3SMhYd9fmthIJnTw0hdUqrWfN8mQ==","id":"rs_68d3c90aa39881939d44c53595e92a810017849b39310c24","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_hKNuXcTweCoeoAvRB0u6ofA3","index":1,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_TCZEW6HUwwk5AZP2Qc0lB5lk","index":2,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"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-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]}
+
+ data: {"id":"gen-1758710025-JvYkFhfS25jA3PB7wt4C","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710025,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":108,"completion_tokens":375,"total_tokens":483,"cost":0.0019425,"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.001875},"completion_tokens_details":{"reasoning_tokens":320,"image_tokens":0}}}
data: [DONE]
@@ -71,7 +439,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 536.1295ms
+ duration: 963.740125ms
- id: 1
request:
proto: HTTP/1.1
@@ -79,7 +447,7 @@ interactions:
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}'
+ 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_hKNuXcTweCoeoAvRB0u6ofA3","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_TCZEW6HUwwk5AZP2Qc0lB5lk","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_hKNuXcTweCoeoAvRB0u6ofA3","role":"tool"},{"content":"6","tool_call_id":"call_TCZEW6HUwwk5AZP2Qc0lB5lk","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
@@ -95,63 +463,61 @@ interactions:
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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"choices":[{"index":0,"delta":{"role":"assistant","content":" Sum"},"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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":" Multip"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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":"lication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"choices":[{"index":0,"delta":{"role":"assistant","content":" Product"},"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"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: {"id":"gen-1758710034-uVnUmMkBudgbg8MIceBI","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710034,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":167,"completion_tokens":29,"total_tokens":196,"cost":0.000249375,"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.000145},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -160,4 +526,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 1.401480708s
+ duration: 993.051084ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_azure.yaml
deleted file mode 100644
index 6b5ec72fed3098c7effa65fdd49e4bcba30aa548..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_azure.yaml
+++ /dev/null
@@ -1,307 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 920
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Considering","reasoning_details":[{"type":"reasoning.summary","summary":"**Considering","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" see","reasoning_details":[{"type":"reasoning.summary","summary":" see","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" returns","reasoning_details":[{"type":"reasoning.summary","summary":" returns","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mapping","reasoning_details":[{"type":"reasoning.summary","summary":" mapping","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wrapper","reasoning_details":[{"type":"reasoning.summary","summary":" wrapper","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" gives","reasoning_details":[{"type":"reasoning.summary","summary":" gives","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" aggregated","reasoning_details":[{"type":"reasoning.summary","summary":" aggregated","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" prepare","reasoning_details":[{"type":"reasoning.summary","summary":" prepare","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" present","reasoning_details":[{"type":"reasoning.summary","summary":" present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" something","reasoning_details":[{"type":"reasoning.summary","summary":" something","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear","reasoning_details":[{"type":"reasoning.summary","summary":" clear","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.summary","summary":" like","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stating","reasoning_details":[{"type":"reasoning.summary","summary":" stating","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sum","reasoning_details":[{"type":"reasoning.summary","summary":" sum","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" product","reasoning_details":[{"type":"reasoning.summary","summary":" product","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ensure","reasoning_details":[{"type":"reasoning.summary","summary":" ensure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’m","reasoning_details":[{"type":"reasoning.summary","summary":"’m","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"comment","reasoning_details":[{"type":"reasoning.summary","summary":"comment","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ary","reasoning_details":[{"type":"reasoning.summary","summary":"ary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" when","reasoning_details":[{"type":"reasoning.summary","summary":" when","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calling","reasoning_details":[{"type":"reasoning.summary","summary":" calling","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" switch","reasoning_details":[{"type":"reasoning.summary","summary":" switch","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" final","reasoning_details":[{"type":"reasoning.summary","summary":" final","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" delivering","reasoning_details":[{"type":"reasoning.summary","summary":" delivering","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.summary","summary":" answer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let","reasoning_details":[{"type":"reasoning.summary","summary":" Let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" everything","reasoning_details":[{"type":"reasoning.summary","summary":" everything","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" place","reasoning_details":[{"type":"reasoning.summary","summary":" place","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" proceed","reasoning_details":[{"type":"reasoning.summary","summary":" proceed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo073WkEbSUTynXLWF7YkXtlqemSvTu6ZVh1opH6GIeivg460VGOSWqMgajuCL2BAd9Ph1naqJaumzpKDFfpYa3_yXplsvj-oJbPsYIIgYCcpHAtqHQ9uBnJEoSSvhgfz3cBje__74aNbynm1tUvMAmzdIRfny4P6diP-aF4ML2pkay6bP0zWF4WDF7zEQuvqYViorvj8BAsjaGZcBIDg5vxjVvBb6ELZKSQrtJq8g4y8sXhZ-pB-kPMjihuh2eG3BEUl9Xv_2kZcyjApyWZ5l8B6RQxaa9w1TgNFWnIXbtqotpc01yKG9qRQFCmTbrSDv5DmShiUMWCtEVI-HtlokcJHHPpGKwAwh82aOeOtk-wTezitAt3JxXGrA0klv0oGkFiRr1WkPesqMrX7YbHDG7qjb1nkj6Na5g2zQVbStVgv0_rbYepRgZm_aVG6fPxeL96T3YxaLgG2v3disYrB3to7oIJh24QGEYR02d_ERqoocoMR3KbQYeryRDyerhjD_OSRa7JkusbcnuzFBH_Jt7V67T5kvZBauEec0LCfMtYtySKF1uGklVQsN-6Dhm0IaGEkVBAuMsIydrs2eoa4Npoocbe6ZftK8lAP5DYySPZDCGlWjnUuzMWg-VPpOMagS9j7LctADFkyv8ADfTWBCk9H0oASdajXQro3qU5YpJ5YJj6y6SA0_3uvSuQ_SdyfKmhOthL1naMwCpJLI0o_GOyn6V0je_AIa4u16vbAymW93dxasmN8DFrVOHMpTj55sc9-S_eWPR-bSc3Oxr0vdjjqRLTWGEIIeoNMZ_4s1bXeVBv94sWITQNGdaAsMmnbN2mQ_R6Je8zYfUuHAnG8LUPkSX8-w92PCFbbYdJ9EaPmMMBYcv2h94c5pXWdMTqo_FK-28Dw_9AnGTYyqLVhy6efDFeEqtyqVxdmGc4OKBWDsNcL2J_7RCfV2blCqLplP7V-HQKTHbl3rKZ8cqqip2DyuJkzqrXw96LeXFHiVgjyXjQblKt1RAtqBGHmKWNbWaeiaMzqA56Xe0opcpZ37Af6_x1y3bxA4ZxNEDWJXSWO6364RLGFTKN8Cb11SNSc5WyKWj3TWV7_TdH9vQ4iSW1z6Q9PuhPnn7tF6utYwbYGfxgPmvfzkgztDZbLOyvxWSddzlAQtXHHNRqVJf7krpOlWx9r5yJ97LhfKnA4XtA-wY3uYEHDkNCBrhVlyA5-M8uE58c0a7n73FCxvwSoXQk3LbK3yqyse6jQ8LDGsQThB9QDMOtpSFPgq0GPxKzrXAXdcRT_jmdFnbrLzlZXHglkeZM9vUvm41kMPEZbVpZNGFUDq6qSnahOoYHXt6IXNdtS7VfAdyA5uflZBTJLUcnE-qcNxfml_Xe_U1cVwJIaDPZ4egkXfgJrzhRuuCFy1gWE7UXSzMQ1FHqBpdV-gw0P5f02E-u3k7-b0XfiK6wRbagkZiV44lHu3Waqhhj_CMyY4IOP-pUOadYoZf0zenGsD1JDXg_t9Xz4tJawblUPKqhMOuxHZSi6ofwRlCslAKjbRufQail6cErHrkvOjkI51JZ13WJIoTO4G0NSKg6XS6aK678OdNrVcForU55pwsKHmKM1TkifPgUPCqhsxkcNI0-5XNYPkOA14RYn_aAlx3RbuTWT6GQ5z-ODBgCVlWp-R9-AWs2Y5VjSwPIOHG3Fpyl9_8PASVV-tnO0MtmbprmeinG436vp5hZanwaaHO6vpsX9WJYwz5YDU72YccWsrFOmmoNpNzMEYnvxlosbRoV3nsQArvvETdXKKcngIGqdtSBgSQF65L5xZc8n9nmxq1WY3_vO52yA-IUF6ue7wVsylf7T_cjd0YIt3kphtlbdEnOAlUtbfDYlxGGcu6VQs41k_T1nK_ygD3dWTH8gl9sglymoAuitkOQm83OZ3j7Qlx3qU39HVxsc6vGl56ZuvEvG3uTyGB6LJL5j-Kusau8zt1HWRGWdeivs6kNY59ZgsoSr_6vG8vM2Ap3S6-COBGnLoGoV62W3ssB1cwQjtl_7xVSmS5R-aBAk4D0KBogkoNxTnngJm0KerL3yyT31fJ3dIYl2oKUEJC7vOGTZ84dQzab3EMIydGqk1qnFN1ZpeGh0HM-KpvVn__0GnayavqZ05XKk556AqBdfE1AGCZ6x_2aemGYJz5ajpN9b8Fk3vUSvGH2GbCv4Lu4GKe4Aiwl9SaFUaJe5Z8ZAqqrwM0a2r-T2XZ2KnyaDSpnW5NNPWFHvdgCpzk9LcM1vdHDi6w2xQSU60-i1RZHTIFopSeIw81G3BoPXuNzdKydNamoSJmierGenAm0HLDXKYnGPUHOqN7OMp4jXsA2uaL6lBkutqdK5KKOVkPd2Wglexo0VoQ19Zz9iHTPXR9QfzXp6mFTuFVT8gil1IPPqQSvsTpmU=","id":"rs_68d3bdd175ac81909a2e3d64d878e8370cdd00ba3753eceb","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_ijzrB4dcJKHFgBWmBvZUDUo9","index":1,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"2,"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_Y8xBzhR205HMo3c53rOS7Aik","index":2,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"2,"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707152-lxyKf8YH5egbuvrNJk8s","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707152,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":108,"completion_tokens":311,"total_tokens":419,"cost":0.003245,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000135,"upstream_inference_completions_cost":0.00311},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 733.807ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1345
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_ijzrB4dcJKHFgBWmBvZUDUo9","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_Y8xBzhR205HMo3c53rOS7Aik","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_ijzrB4dcJKHFgBWmBvZUDUo9","role":"tool"},{"content":"6","tool_call_id":"call_Y8xBzhR205HMo3c53rOS7Aik","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"usage":{"include":true},"provider":{"only":["azure"]},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"Results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"):"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multip"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"lication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"):"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707158-MIWSIoylkOYlaz6qsdqb","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707158,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":167,"completion_tokens":28,"total_tokens":195,"cost":0.00048875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00020875,"upstream_inference_completions_cost":0.00028},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 331.671917ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_openai.yaml
deleted file mode 100644
index 1d4b87087259f7b68a7eb45f89820c4b51125206..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_gpt-5_openai.yaml
+++ /dev/null
@@ -1,535 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 921
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Executing","reasoning_details":[{"type":"reasoning.summary","summary":"**Executing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calculations","reasoning_details":[{"type":"reasoning.summary","summary":" calculations","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simultaneously","reasoning_details":[{"type":"reasoning.summary","summary":" simultaneously","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" follow","reasoning_details":[{"type":"reasoning.summary","summary":" follow","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" developer","reasoning_details":[{"type":"reasoning.summary","summary":" developer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.summary","summary":"'s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instructions","reasoning_details":[{"type":"reasoning.summary","summary":" instructions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" addition","reasoning_details":[{"type":"reasoning.summary","summary":" addition","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiplication","reasoning_details":[{"type":"reasoning.summary","summary":" multiplication","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" at","reasoning_details":[{"type":"reasoning.summary","summary":" at","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.summary","summary":" same","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.summary","summary":" time","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.summary","summary":" have","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" two","reasoning_details":[{"type":"reasoning.summary","summary":" two","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".add","reasoning_details":[{"type":"reasoning.summary","summary":".add","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".multiply","reasoning_details":[{"type":"reasoning.summary","summary":".multiply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" looks","reasoning_details":[{"type":"reasoning.summary","summary":" looks","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.summary","summary":" like","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" run","reasoning_details":[{"type":"reasoning.summary","summary":" run","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" these","reasoning_details":[{"type":"reasoning.summary","summary":" these","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parallel","reasoning_details":[{"type":"reasoning.summary","summary":" parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" operate","reasoning_details":[{"type":"reasoning.summary","summary":" operate","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simultaneously","reasoning_details":[{"type":"reasoning.summary","summary":" simultaneously","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" values","reasoning_details":[{"type":"reasoning.summary","summary":" values","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 2","reasoning_details":[{"type":"reasoning.summary","summary":" 2","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 3","reasoning_details":[{"type":"reasoning.summary","summary":" 3","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" return","reasoning_details":[{"type":"reasoning.summary","summary":" return","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" message","reasoning_details":[{"type":"reasoning.summary","summary":" message","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sum","reasoning_details":[{"type":"reasoning.summary","summary":" sum","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" will","reasoning_details":[{"type":"reasoning.summary","summary":" will","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 5","reasoning_details":[{"type":"reasoning.summary","summary":" 5","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" product","reasoning_details":[{"type":"reasoning.summary","summary":" product","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 6","reasoning_details":[{"type":"reasoning.summary","summary":" 6","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sure","reasoning_details":[{"type":"reasoning.summary","summary":" sure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" inputs","reasoning_details":[{"type":"reasoning.summary","summary":" inputs","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.summary","summary":" are","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" integers","reasoning_details":[{"type":"reasoning.summary","summary":" integers","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.summary","summary":" are","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Executing","reasoning_details":[{"type":"reasoning.summary","summary":"**Executing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parallel","reasoning_details":[{"type":"reasoning.summary","summary":" parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calls","reasoning_details":[{"type":"reasoning.summary","summary":" calls","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’m","reasoning_details":[{"type":"reasoning.summary","summary":"’m","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" going","reasoning_details":[{"type":"reasoning.summary","summary":" going","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_tool","reasoning_details":[{"type":"reasoning.summary","summary":"_tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".parallel","reasoning_details":[{"type":"reasoning.summary","summary":".parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" two","reasoning_details":[{"type":"reasoning.summary","summary":" two","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".add","reasoning_details":[{"type":"reasoning.summary","summary":".add","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" values","reasoning_details":[{"type":"reasoning.summary","summary":" values","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.summary","summary":"=","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.summary","summary":"2","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.summary","summary":" b","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.summary","summary":"=","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.summary","summary":"3","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".multiply","reasoning_details":[{"type":"reasoning.summary","summary":".multiply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.summary","summary":" same","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" values","reasoning_details":[{"type":"reasoning.summary","summary":" values","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Once","reasoning_details":[{"type":"reasoning.summary","summary":" Once","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" responses","reasoning_details":[{"type":"reasoning.summary","summary":" responses","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" expect","reasoning_details":[{"type":"reasoning.summary","summary":" expect","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" some","reasoning_details":[{"type":"reasoning.summary","summary":" some","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" numeric","reasoning_details":[{"type":"reasoning.summary","summary":" numeric","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" outputs","reasoning_details":[{"type":"reasoning.summary","summary":" outputs","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Since","reasoning_details":[{"type":"reasoning.summary","summary":" Since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" order","reasoning_details":[{"type":"reasoning.summary","summary":" order","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.summary","summary":" of","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" isn","reasoning_details":[{"type":"reasoning.summary","summary":" isn","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’t","reasoning_details":[{"type":"reasoning.summary","summary":"’t","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" guaranteed","reasoning_details":[{"type":"reasoning.summary","summary":" guaranteed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" gather","reasoning_details":[{"type":"reasoning.summary","summary":" gather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" carefully","reasoning_details":[{"type":"reasoning.summary","summary":" carefully","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sure","reasoning_details":[{"type":"reasoning.summary","summary":" sure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" commentary","reasoning_details":[{"type":"reasoning.summary","summary":" commentary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_tool","reasoning_details":[{"type":"reasoning.summary","summary":"_tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".parallel","reasoning_details":[{"type":"reasoning.summary","summary":".parallel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" an","reasoning_details":[{"type":"reasoning.summary","summary":" an","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" assistant","reasoning_details":[{"type":"reasoning.summary","summary":" assistant","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" let","reasoning_details":[{"type":"reasoning.summary","summary":" let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" proceed","reasoning_details":[{"type":"reasoning.summary","summary":" proceed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" plan","reasoning_details":[{"type":"reasoning.summary","summary":" plan","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo072cZXrtoGgvfe4X4YFvOIPbrHksolKK6ZClDleGbYXP7ZE-0R--lZubsKlyvPyUuk4HfqOB6Gbt9KyMODVYjs3lvMiYgvdjoKcqaPz0pmTiU9loy27kAfuo9BfIgw7JfPCwKvoIGVXAtqKkjwQ7DnKltrabqgt4OYlhlOBnfvb4jGHJxTtWeUoCR8Ppogjx43GETsDGdPGrt8j1u0VbuyHNtAXDzqXUffmcP6QKxy_ydTBS8K2mCBE-dGUulxaDhMz9shJctA6veeA0Wy7X1zBIRxGOlvkzjARRk5C8Ycp6r7KwvDKv_75mBWXibcDzFhauZIXXxy9D0mzxF8QM9zAhbhPj6r6bhzUI4bPFllfTsZwSQ6Jfr_hQbk6JJ4lfVgBT5tlt9xkhotb8xZp2-6Lp3wd5L0oTZF9sysyMA1DXvPMGyVk0eKU-olepPTVdvFVcFPGdyE-4LtTcmZkqmOjrZDQ6txh_-oaESaOZFhh2PwWaKrA2f9-CPwrLy03CjImzMDmNqjkksOjnwfH6f4XAh0zK8u46oRcB7A68I-tGnRgi9T03Hfks8xESL99yiz2wVXOj__sdP7tBGmg1GLEjOFSAtJBli00zn_1BKqdbgcEFseN_5lBAs86_0fqyaqiLqRaMoPu1X16h7p3nyMZnoRN33BWKd-DoTZ12_pBfvZ2zwlRCOrp3-DWi_VoPejcWtW0dKqPpWSaaCA1ThbCKDii-NJNyj37XJMbo3FSVnu2dUkgJ6xI5yb8zBYU1xmrgJPRz93591b_LUW-xN7zwHVWotipCRR8tv98c7Ls5hl0oVzIzf8ktEgzTumO15rteeG7CVOnjAoZSUTcUpw2oVnGmbdEs4MfeZoMnt86WZJK8z3F1FWte0XN407xnA8mRfVQU9RlxDIKC-7XftJusNgGUZJocONO8GJ4og-tXurxVtTgm-ObwOC7R11KPtBld3meLwPpwPbeESolDeH0jxh8FdwZRG58SJbpTp48JCaYkarf-Hgl34mY4y-BQ6B_2KSy7BlXUq4TAFDYZ2Edg8hnx46VWeuL-8TcNtDTOdIj-B3_0QJu2gZE2PsT_RfBm45R3hizPlk-GG1rkYt5byKiq-VLnnX0BH9uVX0qK8YRG_K_DgYvBh0d_lLBTkVFHLmFb4sr95cWzUtLMGQOBYPYMtqTSdOE8yPpqFFYy0Zpr34GPOil6UKwUNDh9zlrDVuE9slyhK9VBSpB3wKYFKyKbKPXd4BtRj-qL_yDys8lK7siupRlHY06l5eqonAFzvoGOuk05pJsI4yHgErbOKX_jy6DfJ-HjPxJvOPNQaFka3qAoP-vTdFF7R6NlcJJinPLMA0pIRjB2tjXGsVWwnv1e-n_uBz5MUGJXeTmf0lfmonoPkkj_SleHQVPtSzMks5_ozv6f8lEQeVN6NLUFruO7XXVt7xwsqnAEL2ev14mxgI40g66QCZvQHDk4lQsYXBoXX3vpBE2EiTy5Dd1OJsmjoCUSF6VciSSKTefw-WSke9g7fScY3V_y43cdf1ak6FDEsjCm3LYykaLjepW3va6ahHiKO206obfsHcJrsP-ooLVcuv1j39VsHFa5f7mzMQvqX64zGcfZ1nhZHSS7WZPjoBKKpCpaDVKzb5qNjj7G9qhiSqZLXMqemCUz7uhOa1uP2xwRP3IWOqFP0uliWVrnsVar7KVK3NvRTng0R5xD7tOu2Ha3L7Ar_mFotWrAGD_n27mddTvUHFs5han8MkN16FLph9P8puPRanKfn2mskUbCs1rq7Bl6zjYMH4EnVMJgZxxwiOoHOcUaBsBYg7xHrNPlIM1JpykXFY_2i59sLwDVv3fF_z9P61XdUt_crwGh72WU0CskOGg_h0i6WVi1naSeCIG28XVS0y7cQ1Yl6Azdifbmu7vfGSdI3IEOafNXQ3jEO8-o9WpXH-nrvy-zEDN_pR0M3CLJhUGUwPPotC7MMI9QNn2NJN_xUQgZWflRTxAa_pwE-IxQ7owWqMrPxrpUtTkrw_OWpAYgmCRF94K084iI8bHTZALz3q22AjsCc2zfXgtBS-PZoWqWc8W8MnoOAQmK4o1tziC37l9MhDPx3i5YgJ8UYGsOo422Q8uyEKdY5-yJLJ2U0HPYmU0m1RTxUkM3jbztwATbP_kTpS4mBYrklKfjZH9Aa1-aBUm4H46U3-Hw4l5Wp_vZWvQt6NWmx77687WZJ-4vqTH8G6i6oLJtF3fWqF3UOjSOZ6O1W3IDywVDOPFUMc4uI7jxPO8qvsMepmmIdWi00UNuDjss-dxrqvg9WNch1RK4CeX4ohopiVtmJATyaqyczETeZQOoR-g9qY3foNIyMu_Ujq8GPFcmJzrGpWGcekMUBNKcaXH_6Jtxxsus09UImC-q5mWCdAnmxdn4TBPOn5TZRmFz1QgR6DqQC1RMJUPSb2hhpLv0so_tcTGkysoKe4vAdRbLzTgPAebp9SjHQ_X3oHJM5_7bRCiH6krgJOOQ8WoN0Is5WUBU-p4L4xEKf3W77lC8MPNc2_gjxoH0jpZhzj5L0wIktjZVbsZ5Rg-N","id":"rs_68d3bd95d5748194938da838381c7df802d5cb7fd0eeab82","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_psIQR4WDe9RBCaW98POt5Vxo","index":1,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"2,"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_LSUSZlpGq2DwndXz2kBOMcBY","index":2,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"{"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"2,"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":2,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707092-QNacdtILBPlGrzxVmldk","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707092,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":108,"completion_tokens":312,"total_tokens":420,"cost":0.0016275,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000675,"upstream_inference_completions_cost":0.00156},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 594.841084ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1346
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_psIQR4WDe9RBCaW98POt5Vxo","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_LSUSZlpGq2DwndXz2kBOMcBY","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_psIQR4WDe9RBCaW98POt5Vxo","role":"tool"},{"content":"6","tool_call_id":"call_LSUSZlpGq2DwndXz2kBOMcBY","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"usage":{"include":true},"provider":{"only":["openai"]},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"Results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multip"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"lication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707100-Vmup6FM9xTVGNEnMtcty","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707100,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":167,"completion_tokens":30,"total_tokens":197,"cost":0.000254375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000104375,"upstream_inference_completions_cost":0.00015},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 882.618042ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free.yaml
index 8951dc0a08cd183e43c4e6a1c3e2b5de4d429adf..3a21775736b3a8262ba1dc4e2057dc8a1f39dbde 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free.yaml
@@ -24,351 +24,411 @@ interactions:
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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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_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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"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":""},"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: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_71003017","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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_80127272","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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"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-1758709932-DLRiNy0xFxfjHQIfR7bD","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709932,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":394,"completion_tokens":267,"total_tokens":661,"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":199,"image_tokens":0}}}
data: [DONE]
@@ -377,7 +437,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 291.064292ms
+ duration: 440.047041ms
- id: 1
request:
proto: HTTP/1.1
@@ -385,7 +445,7 @@ interactions:
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}'
+ 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_71003017","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_80127272","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_71003017","role":"tool"},{"content":"6","tool_call_id":"call_80127272","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
@@ -401,115 +461,191 @@ interactions:
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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"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-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"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: {"id":"gen-1758709934-ikXLTuMkghbkk3Cb7T3c","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709934,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":675,"completion_tokens":91,"total_tokens":766,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":627,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":66,"image_tokens":0}}}
data: [DONE]
@@ -518,4 +654,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 388.424916ms
+ duration: 418.854916ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free_xai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free_xai.yaml
deleted file mode 100644
index 42b1662ff7703e8294ae55dc66aedbad1a8ccf36..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-4-fast-free_xai.yaml
+++ /dev/null
@@ -1,513 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 916
- 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"}],"provider":{"only":["xai"]},"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-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_59506595","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-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_35183488","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-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"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-1758703696-SwadkyonRTPK2slx92qE","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703696,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":394,"completion_tokens":213,"total_tokens":607,"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":145,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 677.748583ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1277
- 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_59506595","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_35183488","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_59506595","role":"tool"},{"content":"6","tool_call_id":"call_35183488","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"}],"provider":{"only":["xai"]},"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"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-1758703698-w2MGBVa6WFc7oVNy1LRr","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703698,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":621,"completion_tokens":73,"total_tokens":694,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":573,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":48,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 905.780208ms
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
index 2312141547271bdaf11b0bcb7b416f8f576c66d4..23ecb6b22d59642d9c197f1aefc750991db01108 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-code-fast-1.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-code-fast-1.yaml
@@ -24,1004 +24,898 @@ interactions:
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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" number","reasoning_details":[{"type":"reasoning.text","text":" number","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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":".","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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758707383-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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758707383-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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":" 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":".\"\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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Interpreting user request \n- The user wants to both add and multiply the numbers 2 and 3 simultaneously.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Interpreting user request \n- The user wants to both add and multiply the numbers 2 and 3 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- The task requires using both addition and multiplication operations together.","reasoning_details":[{"type":"reasoning.text","text":" \n- The task requires using both addition and multiplication 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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n\n## Executing calculations \n- Adding 2 and 3 gives a sum of 5.","reasoning_details":[{"type":"reasoning.text","text":" \n\n## Executing calculations \n- Adding 2 and 3 gives a sum of 5.","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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-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-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_03388566","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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_90592024","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":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709888-J9HOiqFCKelum0PTR3rb","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709888,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":467,"completion_tokens":410,"total_tokens":877,"cost":0.00062776,"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.000615},"completion_tokens_details":{"reasoning_tokens":342,"image_tokens":0}}}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758707383-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: [DONE]
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ headers:
+ Content-Type:
+ - text/event-stream
+ status: 200 OK
+ code: 200
+ duration: 275.813ms
+ - 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_03388566","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_90592024","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_03388566","role":"tool"},{"content":"6","tool_call_id":"call_90592024","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":\n\n","reasoning_details":[{"type":"reasoning.text","text":":\n\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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758707383,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-1758707383-p6bsrW8fApDxARXF59au","provider":"xAI","model":"x-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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: {"id":"gen-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: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- data: [DONE]
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
- 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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":" 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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":" 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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":" ","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":" 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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":" ","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":".\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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":" sum","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":" of","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":" added","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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":" by","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":" \n","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":" product","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":" of","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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":" multiplied","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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":" by","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"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-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"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: {"id":"gen-1758709891-5ZmCG0KJWJGEGmqQSrCd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709891,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":891,"completion_tokens":83,"total_tokens":974,"cost":0.00015294,"is_byok":false,"prompt_tokens_details":{"cached_tokens":832,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002844,"upstream_inference_completions_cost":0.0001245},"completion_tokens_details":{"reasoning_tokens":58,"image_tokens":0}}}
data: [DONE]
@@ -1030,4 +924,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 341.03575ms
+ duration: 541.4145ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-code-fast-1_xai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-code-fast-1_xai.yaml
deleted file mode 100644
index 57e3b58dc470fc3389d4f50e291488ab9f9e4ab9..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_grok-code-fast-1_xai.yaml
+++ /dev/null
@@ -1,851 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 916
- 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"}],"provider":{"only":["xai"]},"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" says","reasoning_details":[{"type":"reasoning.text","text":" says","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" number","reasoning_details":[{"type":"reasoning.text","text":" number","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Interpreting user request \n- The user asked to add and multiply the numbers 2 and 3 simultaneously.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Interpreting user request \n- The user asked to add and multiply the numbers 2 and 3 simultaneously.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- The instruction specifies using both addition and multiplication at the same time.","reasoning_details":[{"type":"reasoning.text","text":" \n- The instruction specifies using both addition and multiplication at the same time.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n\n## Processing operations \n- Addition of 2 and 3 gives 5.","reasoning_details":[{"type":"reasoning.text","text":" \n\n## Processing operations \n- Addition of 2 and 3 gives 5.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- Multiplication of 2 and 3 gives 6.","reasoning_details":[{"type":"reasoning.text","text":" \n- Multiplication of 2 and 3 gives 6.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Determining function call format \n- The task requires using both add and multiply tools simultaneously for numbers 2 and 3.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Determining function call format \n- The task requires using both add and multiply tools simultaneously for numbers 2 and 3.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_85951183","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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_24192398","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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"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-1758703099-O48TgbaLo4uiU4DFuH7s","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703099,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":467,"completion_tokens":423,"total_tokens":890,"cost":0.00064726,"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.0006345},"completion_tokens_details":{"reasoning_tokens":355,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 816.389041ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1277
- 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_85951183","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_24192398","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_85951183","role":"tool"},{"content":"6","tool_call_id":"call_24192398","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"}],"provider":{"only":["xai"]},"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" +","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" =","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" \n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" =","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"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-1758703106-c00Jv3YliZfeITo51RKB","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703106,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":904,"completion_tokens":32,"total_tokens":936,"cost":0.00007904,"is_byok":false,"prompt_tokens_details":{"cached_tokens":832,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00003104,"upstream_inference_completions_cost":0.000048},"completion_tokens_details":{"reasoning_tokens":17,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.796967667s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2.yaml
index c720b7298065b7f627c78652166c99ea5d1ec54f..f5cd0ba0098d1df36f7600fcfd9b1bcca4e9131e 100644
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2.yaml
@@ -24,15 +24,83 @@ interactions:
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-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"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-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"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-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"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":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-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"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":""},"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: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.add:0","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"{\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.multiply:1","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"{\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+
+ data: {"id":"gen-1758709866-D6LmPHilGivX3GwTHVmj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709866,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":197,"completion_tokens":53,"total_tokens":250,"cost":0.00015542,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00007486,"upstream_inference_completions_cost":0.00008056},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -41,15 +109,15 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 691.313708ms
+ duration: 1.1381205s
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 1291
+ content_length: 1326
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}'
+ 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 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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
@@ -65,11 +133,11 @@ interactions:
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-1758709869-b6cR2VaLidGqid2hYElU","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709869,"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-1758709869-b6cR2VaLidGqid2hYElU","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709869,"choices":[{"index":0,"delta":{"role":"assistant","content":"The results are:\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: {"id":"gen-1758709869-b6cR2VaLidGqid2hYElU","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709869,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":282,"completion_tokens":28,"total_tokens":310,"cost":0.000197,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000141,"upstream_inference_completions_cost":0.000056},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -78,4 +146,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 5.790721792s
+ duration: 721.622792ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_baseten.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_baseten.yaml
deleted file mode 100644
index 3bdb3513850b36f39b83ff086c8b089db3a04511..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_baseten.yaml
+++ /dev/null
@@ -1,209 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 922
- 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"}],"provider":{"only":["baseten"]},"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-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" perform"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiplication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" on"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":"{\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"","arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":"{\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"","arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698601-BcQZB51oJyBM5QJQFNej","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698601,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":216,"completion_tokens":56,"total_tokens":272,"cost":0.0002696,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001296,"upstream_inference_completions_cost":0.00014},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 498.287166ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1389
- 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":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["baseten"]},"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-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"Here"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698602-5pFGEyCLMrBq9UhjfPvc","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698602,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":305,"completion_tokens":30,"total_tokens":335,"cost":0.000258,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000183,"upstream_inference_completions_cost":0.000075},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 436.098917ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_chutes.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_chutes.yaml
deleted file mode 100644
index b11217b374e2937a5984b26574b6001206c330c0..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_chutes.yaml
+++ /dev/null
@@ -1,217 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 921
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"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"}],"provider":{"only":["chutes"]},"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-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" use"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" functions"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.add:0","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"{\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.multiply:1","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"{\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":1,"type":"function","function":{"name":null,"arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758702154-WBOijoziFgXS8LllGt7W","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702154,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":197,"completion_tokens":58,"total_tokens":255,"cost":0.00016302,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00007486,"upstream_inference_completions_cost":0.00008816},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.581871125s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1388
- 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 use both the add and multiply functions for the numbers 2 and 3.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["chutes"]},"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-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"**\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":"**"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758702158-8W50efPSR1KT3XQExMUB","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758702159,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":290,"completion_tokens":30,"total_tokens":320,"cost":0.0001558,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001102,"upstream_inference_completions_cost":0.0000456},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.079855917s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_deepinfra.yaml
deleted file mode 100644
index d0c8e55149c6ab7d01b0cb96d27d9dda5410abe7..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_deepinfra.yaml
+++ /dev/null
@@ -1,79 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 924
- 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"}],"provider":{"only":["deepinfra"]},"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-1758698452-8C05CYcX21K3YrxDYBX4","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698452,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698452-8C05CYcX21K3YrxDYBX4","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698452,"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-1758698452-8C05CYcX21K3YrxDYBX4","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698452,"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-1758698452-8C05CYcX21K3YrxDYBX4","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698452,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":171,"completion_tokens":12,"total_tokens":183,"cost":0.0001095,"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.000024},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 386.89175ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1243
- 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":"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"}],"provider":{"only":["deepinfra"]},"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-1758698454-xl8hOM9uiFV9Fms7ocg3","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698454,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698454-xl8hOM9uiFV9Fms7ocg3","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698454,"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-1758698454-xl8hOM9uiFV9Fms7ocg3","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698454,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":260,"completion_tokens":28,"total_tokens":288,"cost":0.000186,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00013,"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: 716.533ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_fireworks.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_fireworks.yaml
deleted file mode 100644
index 59886c7eff362dd693cdf32e6be1b00563f8901a..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_fireworks.yaml
+++ /dev/null
@@ -1,227 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 924
- 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},"provider":{"only":["fireworks"]},"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-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll perform"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiplication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" operations"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" on"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"add"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"multiply"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758698541-HQIgzjFbMYMNpyZh18kp","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698541,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":210,"completion_tokens":59,"total_tokens":269,"cost":0.0002735,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000126,"upstream_inference_completions_cost":0.0001475},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.71658775s
- - 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 perform both addition and multiplication operations on the numbers 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["fireworks"]},"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-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"Here's the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" of"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" operations"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"**"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":":**"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"**"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":":**"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698543-9cTW5zrwHDzilrDVKEIa","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698543,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":287,"completion_tokens":32,"total_tokens":319,"cost":0.0002522,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001722,"upstream_inference_completions_cost":0.00008},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 858.453333ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_groq.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_groq.yaml
deleted file mode 100644
index 69c20c8ba4e858af1308f4535ff252d20448ca2e..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_groq.yaml
+++ /dev/null
@@ -1,173 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 919
- 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"}],"provider":{"only":["groq"]},"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-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" use"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" functions"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" calculate"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.add:0","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-I95hvuRRPNvOSguu14Pf","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":207,"completion_tokens":59,"total_tokens":266,"cost":0.000384,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000207,"upstream_inference_completions_cost":0.000177},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 385.067542ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1389
- 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 use both add and multiply functions to calculate the results for 2 and 3.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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},"provider":{"only":["groq"]},"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-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703130-vXv6ig1CmkIVjCihCVGv","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703130,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":293,"completion_tokens":29,"total_tokens":322,"cost":0.00038,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000293,"upstream_inference_completions_cost":0.000087},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 214.233ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_moonshotai.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_moonshotai.yaml
deleted file mode 100644
index 022fadaa44ec49759afb4e7164ec8db0696c753e..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_moonshotai.yaml
+++ /dev/null
@@ -1,215 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 925
- 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"}],"provider":{"only":["moonshotai"]},"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"add:0","type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"a"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"2"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"b"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"3"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"multiply:1","type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"{\""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"a"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" "},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"2"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":","},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" \""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"b"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" "},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"3"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"}"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"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-1758698559-dEnMb12ksGbLJrugl3yM","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698559,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":154,"completion_tokens":52,"total_tokens":206,"cost":0.0002224,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000924,"upstream_inference_completions_cost":0.00013},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.908387333s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1321
- 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 2 and 3 for you.","tool_calls":[{"id":"add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"add:0","role":"tool"},{"content":"6","tool_call_id":"multiply: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"}],"provider":{"only":["moonshotai"]},"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-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"Here"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"**:"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"**:"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698564-UHyY9mBIA3KYKvJX6SH2","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698564,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":236,"completion_tokens":32,"total_tokens":268,"cost":0.0002216,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001416,"upstream_inference_completions_cost":0.00008},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.531882167s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_moonshotai/turbo.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_moonshotai/turbo.yaml
deleted file mode 100644
index 9d86dbd46a6a5c94cc6b3c0d67c4329aecce0a6c..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_moonshotai/turbo.yaml
+++ /dev/null
@@ -1,213 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 931
- 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"}],"provider":{"only":["moonshotai/turbo"]},"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-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"add:0","type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"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_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"a"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"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_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"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_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"2"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"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_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"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_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"b"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"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_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"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_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"3"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"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_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"multiply:1","type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"{\""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"a"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" "},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"2"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":","},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" \""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"b"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" "},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"3"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"}"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698624-r9d2X8LDEXor8rk1h2bl","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698624,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":154,"completion_tokens":54,"total_tokens":208,"cost":0.0004548,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001848,"upstream_inference_completions_cost":0.00027},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 967.499125ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1339
- 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":"add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"add:0","role":"tool"},{"content":"6","tool_call_id":"multiply: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"}],"provider":{"only":["moonshotai/turbo"]},"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-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698625-IrWdDuyo37s2M6deQP9A","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698625,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":238,"completion_tokens":29,"total_tokens":267,"cost":0.0004306,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0002856,"upstream_inference_completions_cost":0.000145},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.056765958s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_novita.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_novita.yaml
deleted file mode 100644
index 04312574451c00970fdec3cfc4ea4c8b4d8eb1d4..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_novita.yaml
+++ /dev/null
@@ -1,183 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 921
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"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},"provider":{"only":["novita"]},"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"add:0","type":"function","function":{"name":"add"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"a"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"2"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"b"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"3"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"multiply:1","type":"function","function":{"name":"multiply"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"{\""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"a"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" "},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"2"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":","},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" \""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"b"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" "},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"3"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"}"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"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-1758698589-7cPkQEXkEFIxtlQrSoT4","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698589,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":154,"completion_tokens":40,"total_tokens":194,"cost":0.0001924,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000924,"upstream_inference_completions_cost":0.0001},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.989344792s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1266
- 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":"add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"add:0","role":"tool"},{"content":"6","tool_call_id":"multiply: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"}],"provider":{"only":["novita"]},"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-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":"When"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" get"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" when"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" get"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698592-n3WAVHc4qISRqjkGy7YF","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698592,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":224,"completion_tokens":28,"total_tokens":252,"cost":0.0002044,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001344,"upstream_inference_completions_cost":0.00007},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.719441167s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_siliconflow.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_siliconflow.yaml
deleted file mode 100644
index eabf73e58f09eba18da5cb29b802165e264dfc64..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_siliconflow.yaml
+++ /dev/null
@@ -1,244 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 926
- 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"}],"provider":{"only":["siliconflow"]},"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-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" perform"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiplication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" on"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.add:0","type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"b"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":" "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"3"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":null,"type":"function","function":{"arguments":"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698502-MHFkiS2WJtsCM4wAIUm7","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698502,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":216,"completion_tokens":57,"total_tokens":273,"cost":0.00025581,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00012528,"upstream_inference_completions_cost":0.00013053},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.697189084s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1401
- 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 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["siliconflow"]},"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: '{"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":"SiliconFlow"}},"user_id":"user_2zMGmKqlf4zmAvL9snVImB1Z1ZQ"}'
- headers:
- Content-Type:
- - application/json
- status: 429 Too Many Requests
- code: 429
- duration: 3.404175667s
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1401
- 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 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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"}],"provider":{"only":["siliconflow"]},"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-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"Results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698512-VUmyooh26yHTBC644zFP","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698512,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":309,"completion_tokens":26,"total_tokens":335,"cost":0.00023876,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00017922,"upstream_inference_completions_cost":0.00005954},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.662207542s
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_together.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_together.yaml
deleted file mode 100644
index ff9a8fed678c922b958b31b94b0d180732c07caf..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_together.yaml
+++ /dev/null
@@ -1,173 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 923
- 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"}],"provider":{"only":["together"]},"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-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_76fxfl1cntdf1l2yd3d5fkow","type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"{\"a\":2,"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"\"b\":3}"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"call_cy8aesbbkn1zfn97on2btvb3","type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"{\"a\":2,"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\"b\":3}"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758698613-9HfF6MGRyQ9gbZ95gb6R","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698613,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":218,"completion_tokens":55,"total_tokens":273,"cost":0.000383,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000218,"upstream_inference_completions_cost":0.000165},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.004536333s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1411
- 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_76fxfl1cntdf1l2yd3d5fkow","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_cy8aesbbkn1zfn97on2btvb3","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_76fxfl1cntdf1l2yd3d5fkow","role":"tool"},{"content":"6","tool_call_id":"call_cy8aesbbkn1zfn97on2btvb3","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"}],"provider":{"only":["together"]},"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-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"Here"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698614-QISIFxNNBY9CWs8rE3SB","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698614,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":392,"completion_tokens":30,"total_tokens":422,"cost":0.000482,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000392,"upstream_inference_completions_cost":0.00009},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 966.797458ms
diff --git a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_wandb.yaml b/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_wandb.yaml
deleted file mode 100644
index ccc73914ba650f5cee997e1a4768de90e6160080..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/multi_tool_streaming_kimi-k2_wandb.yaml
+++ /dev/null
@@ -1,233 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 920
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"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"}],"provider":{"only":["wandb"]},"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-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" help"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" at"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" same"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":" time"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.add:0","type":"function","index":0,"function":{"name":"add"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"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}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"a"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"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}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"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}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"2"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"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}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"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}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"b"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"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}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"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}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"3"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"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}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.multiply:1","type":"function","index":1,"function":{"name":"multiply"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"{\""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"a"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" "},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"2"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":","},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" \""},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"b"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"\":"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":" "},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"3"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"function":{"arguments":"}"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758647949-VyHnJkppboLqimSlulNy","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647949,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":209,"completion_tokens":59,"total_tokens":268,"cost":0.00051815,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00028215,"upstream_inference_completions_cost":0.000236},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 316.566ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 1386
- 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 help you add and multiply the numbers 2 and 3 at the same time.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply: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},"provider":{"only":["wandb"]},"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-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"Both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" operations"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" have"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" been"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" completed"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"*"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":":**"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"*"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":":**"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758647952-AZiPRf45L7dyc6UhmTUo","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647952,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":335,"completion_tokens":33,"total_tokens":368,"cost":0.00058425,"is_byok":false,"prompt_tokens_details":{"cached_tokens":192,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00045225,"upstream_inference_completions_cost":0.000132},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 311.114542ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4.yaml
index a47d0b1ef2260db668387b5251bc7acff4a94591..ed82ec6febb6806e2e2886f31f864bffaae47c58 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4.yaml
@@ -24,10 +24,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709892-6PE3iue0fNU40wFCqPdU\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758709892,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! \\n\\n(That's \\\"hi\\\" in Portuguese - you can also say \\\"Oi!\\\" for a more casual greeting)\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":16,\"completion_tokens\":33,\"total_tokens\":49,\"cost\":0.000543,\"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.000495},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 1.961599042s
+ duration: 2.367681542s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_amazon-bedrock.yaml b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_amazon-bedrock.yaml
deleted file mode 100644
index 37e4dead9d0950f2b00f105ef77757d6804b5579..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_amazon-bedrock.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 239
- 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,"provider":{"only":["amazon-bedrock"]},"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-1758703512-Gm4spW8xO5nbEhiclJq1\",\"provider\":\"Amazon Bedrock\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703513,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 2.448192541s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_anthropic.yaml b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_anthropic.yaml
deleted file mode 100644
index 4e067fd8cbe065219e424ec61857cc3db6815c95..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_anthropic.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 234
- 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},"provider":{"only":["anthropic"]}}'
- 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-1758703454-UI2RCuSlPnY6RYEfhxoh\",\"provider\":\"Anthropic\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703454,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.994516958s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex.yaml
deleted file mode 100644
index 6e1015817d9bfff30cc78f62fabd5ad96987a704..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 238
- 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,"provider":{"only":["google-vertex"]},"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-1758703408-y7IKlbobhYKwJ6L3egiy\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703408,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! \\n\\n(That's \\\"hi\\\" in Portuguese!)\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":16,\"completion_tokens\":18,\"total_tokens\":34,\"cost\":0.000318,\"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.00027},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 2.225140833s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex/europe.yaml b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex/europe.yaml
deleted file mode 100644
index 8d6c3caaad37af7d6ac94216199d1ce0f775e9c4..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex/europe.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 245
- 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,"provider":{"only":["google-vertex/europe"]},"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-1758703489-fCFoX3Q2TlwGqElD2Ukf\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703489,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! (Hello!)\\n\\nOr you could also say \\\"Oi!\\\" which is a more casual way to say hi in Portuguese.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":16,\"completion_tokens\":33,\"total_tokens\":49,\"cost\":0.000543,\"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.000495},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.344501125s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex/global.yaml
deleted file mode 100644
index 5a1a17fd74e99f7af4e05e0013dc64028dc5ef2d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_claude-sonnet-4_google-vertex/global.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 245
- 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,"provider":{"only":["google-vertex/global"]},"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-1758703435-rmbIOBbD9iDRHTQ4CHjT\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703435,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! \\n\\n(That's \\\"hi\\\" in Portuguese!)\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":16,\"completion_tokens\":18,\"total_tokens\":34,\"cost\":0.000318,\"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.00027},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.191377875s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free.yaml b/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free.yaml
index ac10768afea6bbc55e53862365f80e85085bdfaf..b95ef804d81d8d674577a90d7d40dfb684f51c44 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free.yaml
@@ -24,10 +24,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709952-ZNleDml9ZyKJBBmo6Lp2\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758709952,\"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
+ duration: 1.025358792s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free_deepinfra.yaml
deleted file mode 100644
index 975ec4d6ec8e1f840384a892c22ae349769f80d2..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_deepseek-chat-v3.1-free_deepinfra.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 241
- 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,"provider":{"only":["deepinfra"]},"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-1758704085-PBobpxtP5m1abvKwulG8\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758704085,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! (That's \\\"Hello\\\" in Portuguese.)\",\"refusal\":null,\"reasoning\":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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.212305625s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash.yaml
index 96621dca4db0151bd1a9626f04e31ac8edc0fd84..715d55df7ded1cc65e2ee31ec7e9923e97bd290e 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash.yaml
@@ -24,10 +24,10 @@ interactions:
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}}}"
+ body: "\n \n{\"id\":\"gen-1758709943-zXd7Ax22uRAHy5znq3IZ\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758709943,\"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
+ duration: 492.340792ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash_google-ai-studio.yaml
deleted file mode 100644
index 745113c29ab2a65e163d331781688a05f20b305b..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 243
- 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,"provider":{"only":["google-ai-studio"]},"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-1758703927-oXMBmCZ6gCQRj6rj9n2n\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703927,\"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: 1.207296209s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash_google-vertex.yaml
deleted file mode 100644
index dc1c9a56deeec669a21b522f5566bf5caecf44a6..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.0-flash_google-vertex.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 240
- 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},"provider":{"only":["google-vertex"]}}'
- 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-1758703935-Q19sDnw0r2IUsDLwFgXP\",\"provider\":\"Google\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703935,\"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.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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.447432458s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash.yaml
index b49669378865249bef85945f46b3693883f36b7d..c6f39634838fb9c7f47bac1863cfa6a49a6d4817 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash.yaml
@@ -24,10 +24,10 @@ interactions:
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}}}"
+ body: "\n \n{\"id\":\"gen-1758709935-kd0WVfvQqUG7x9tO0Rze\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758709935,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":9,\"completion_tokens\":1,\"total_tokens\":10,\"cost\":0.0000052,\"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.0000025},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 765.646458ms
+ duration: 766.97325ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-ai-studio.yaml
deleted file mode 100644
index 6285ce50840081f55bd1b86f1620cadce4808ef7..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 239
- 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,"provider":{"only":["google-ai-studio"]},"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: '{"id":"gen-1758703826-lKOF7A82gK5ktaYuQVKj","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion","created":1758703826,"choices":[{"logprobs":null,"finish_reason":"stop","native_finish_reason":"STOP","index":0,"message":{"role":"assistant","content":"\"Olá!\"","refusal":null,"reasoning":null}}],"usage":{"prompt_tokens":11,"completion_tokens":3,"total_tokens":14,"cost":0.0000108,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000033,"upstream_inference_completions_cost":0.0000075},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}'
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 384.559167ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-vertex.yaml
deleted file mode 100644
index 32ece6669b4ca658ef59617ea473c0d22068490d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-vertex.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 236
- 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},"provider":{"only":["google-vertex"]}}'
- 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-1758703833-UOtGSn0HPRf7N4GbwcNq\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703833,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.186650292s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-vertex/global.yaml
deleted file mode 100644
index ea41e3fdbb320821c35379d52f4fa80791c6308d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_gemini-2.5-flash_google-vertex/global.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 243
- 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,"provider":{"only":["google-vertex/global"]},"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-1758703819-1HtYtqHViG8mTLQmAyQt\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703819,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 840.353375ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_glm-4.5.yaml b/providertests/testdata/TestOpenRouterCommon/simple_glm-4.5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..5016cd31639812e677903a3847f7ea8637a1bfa1
--- /dev/null
+++ b/providertests/testdata/TestOpenRouterCommon/simple_glm-4.5.yaml
@@ -0,0 +1,33 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 187
+ host: ""
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"z-ai/glm-4.5","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{\"id\":\"gen-1758710036-IXcHUMxkICQ5xKrla5sn\",\"provider\":\"Novita\",\"model\":\"z-ai/glm-4.5\",\"object\":\"chat.completion\",\"created\":1758710036,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":21,\"completion_tokens\":4,\"total_tokens\":25,\"cost\":0.0000214,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000126,\"upstream_inference_completions_cost\":0.0000088},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 980.918084ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5.yaml
index 6e71e68a2a2277b81ce9b6896b85f2d32108a2a8..b5e5ed8a69155d7a740869f39ba0ecfc203b1c9e 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5.yaml
@@ -24,10 +24,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709984-uDDmgcl9M9axHhrnPO9m\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758709984,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":\"**Providing greetings in Portuguese**\\n\\nThe user asked me to say hi in Portuguese. That's straightforward! I'll go with a simple \\\"Olá,\\\" and maybe add \\\"Oi\\\" as well. It's nice to give a couple of options, but I want to keep it concise. Since the instruction emphasizes avoiding heavy formatting, I’ll stick to just the greetings without extra embellishments. So, I'll just provide those two greetings: \\\"Olá\\\" and \\\"Oi!\\\"\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Providing greetings in Portuguese**\\n\\nThe user asked me to say hi in Portuguese. That's straightforward! I'll go with a simple \\\"Olá,\\\" and maybe add \\\"Oi\\\" as well. It's nice to give a couple of options, but I want to keep it concise. Since the instruction emphasizes avoiding heavy formatting, I’ll stick to just the greetings without extra embellishments. So, I'll just provide those two greetings: \\\"Olá\\\" and \\\"Oi!\\\"\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo08jkLfyI2cfBaeIjfGBYzosAvdF3iAsGYaj-e2VKUap_EDPiV9qu3fmMj6MoeBGTc03G28KtCz8TvT1VTwH1S6K_DNtJ_zlQzMAcdoFTN1LDhKBFdZDDWEOv-2amDBOF8gjshrNby8EfHXgv2kEeviY4fM3vOma-WkWKJlPK9w3kpFs-sQPAa-GVCLDtsBkWUVoz_Cn9ajp_VfoZEwRr8JrfWJ3JyNJTUYr5L3Km08Az-MR78A0myBxP9bfC2q4oh2mweJ1hZK3OlHrVBHCdOQk3kstwBI2rGb32GV75IM1BsTFI37dSYEnezEEoOpT0WcFSb4_wP9QmE8KRdT-Kq4Mdsu-iVN-ZjZILi7Kmvh8O_8UUoUXFtkh1c7IwjnWdhTsV5-T414Aq6Dc7KufEYrJhBCxLlPO-xH33F7uK-2rwDVDLEExka_F428SCh7TRS3iHTkgYKz1_j6VOAtmSBAn5ZsQnrEConxYmo6CBsHyt-jPX7qw84rgApvbBn6VI2aVCx9vumtNO78Kscst5bBpY_3fv71J51p_Cl1GxJ2W3bVeybuhmjs8Z_iswzDWmx7OY4DT0YMQcmMLlcs2RtcpaoXCb7_wYh2nx_Plxhf4E9K6tHfagD9L1DTvMXOBaddgC8nKsEd2VGRHY8gvvVob3youE1puvv5lVu61EJma_Qs_u1bSHxK-Gci5yrdGbA4bHyolx0BryVbm2YvyHsNF9zAxGN0Zrr5I-P2UHAv7S6Bu-tGwSkh3rzplek7VdO51nuv1g74c5riabcYl41PwVvo8T6mG2Ij1oHKHvjjXBJ4Zpj5ZgbDGa0Sp1aoftoE9VSVpv8q-pGZb7AzwME_Kv1UnjRRTTc06EbI3EjCBAgwjfyc2vmFUUy4_SsEgGbzpTmo10n-0ka75bsLGpzlOGQAOA5G-OqQUGi8fs-9sjyq6CEgJL-QR-WE219C5q7n8pI-QRrhdwdvYMuBqYyUSM3QUesqH0fuqpsFN6X-Q0FqFywccIvaLHWMQaKZU2VUclPwctWS1ShpdTAXJJXY9-6rim5fkU1gNgHuGLwLalFGkS5XRgWKkS5U7qKDV3yyQIqg0eoCrHPK9j1qlfl2Di2nGVTWFWVrZQCYFyjPk_CDVe7VvoJmYXlXS9_6znXDi4aqQC5aEF-P0VBN-IZ5EgCBo0y0qCkAp9AcJm75qRR5MUX6l9zCmFMi8OwIYwjsNnC8-aVKavqDhqN_wfD8026w==\",\"id\":\"rs_68d3c8e1d7c08197b873572f5a0188900ed8812610ad5c82\",\"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
+ duration: 1.125235666s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_azure.yaml
deleted file mode 100644
index c43becd8eaef5998a8b6c7b859e8bf515d6976cd..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_azure.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 228
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"provider":{"only":["azure"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707102-LV2O8bYKDQ2ht8G0KTHw\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707102,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":\"**Providing a simple greeting**\\n\\nThe user wants me to say hi in Portuguese, which is a simple request. I'll go with “Olá!”, as it fits the instruction perfectly. I’m considering whether to include “Oi!” as a casual alternative, but I want to keep it minimal since they asked specifically for a singular greeting. So, I’ll stick to just “Olá!” for the response. I think that should be just right!\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Providing a simple greeting**\\n\\nThe user wants me to say hi in Portuguese, which is a simple request. I'll go with “Olá!”, as it fits the instruction perfectly. I’m considering whether to include “Oi!” as a casual alternative, but I want to keep it minimal since they asked specifically for a singular greeting. So, I’ll stick to just “Olá!” for the response. I think that should be just right!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo072ijkZbv09_zuszJjRnHB6MyDgyyN2UHg9Y7WyLmvgemCeaOaMJ342Pwx1UOpIhuX8-z6h4oMVyMtAOl2ulpKKezx0nrxgI7KguSLx_bMIElyFDLAxUFWaEu1ZzYAkAta-RK1GsmU6Qc6gOAsW0vSgw-_3ErfcFDK81WoN4AOGxYY-u0pvbdXUvPZA0f0tbmqcpGM-UvcURFs6_gPnZ720J9EdzkT642BOjKSyJlz4tCF9qX4eLig26X-R2gpcTZWb--L3WAhpse7I4U3M1RvxCwt0FYQhg7KiUDdWQy_Vm8zapSdPf2-dS0r-Evc14fjZBMxCFky51OCa5GHtJz8KnGXQx7p7VbPgS7c_I0DrOhcNSPhcbuT2XYp-D5PsX1JJQFz-ZkrghP6WvquthqaVvd2vp-0hhnnviqmdE1bssl91vYGDab6k2WLpoPR3MZps6xkVwIb5IDID_VCKO5a9m-dXljXXuslKsHjbb9_p3d_Cn2eFiXZAgLlcz8N1-BIIxFp6EygIZT4zbh8tRWbxr1QtHoAmAKuW73NjP_P8tdUxMTWDCYulcKhUxIBz-aCtu4JsigKsW1YUnED6ddBsXU2rTkITcWDlUjWowfA3RQKup7rB9vdwcEQXmq-ZP1C8pav6VZ41GA4FlbswgdxX4egVnchhm5qFuGYUwursE4LMX7Mo8kHm44E22I-MMBA_GyjiCN6tRy-cK623OudjkMGJTj_74hPL0pMxqlsng84LpSqI6uW_xgDOg4pSfKtdq3wS2JZ9z1vFlLsrbF_uzMfUmM_sc1GgyLq2rg0qH0cKZk8-0DwX-cq-NP7q40mkF4QxQS3gq0y1ZzHk7Y6JjsGnQrh0mspKUP9E4tWTi6u95sCT6JtYuMgLg-71jMyJf9uSV8IrE6iOS6QlIJ3b-3emXkNpAQfGu4WXPL47X_3Ooai4Ofi_fxmLLurJHGFVoB-Ya9aCBFbkmc5aBB_8Uj-5A50S1FEJZk6mIRHU_-d-9aF8lOew270n81y336NCZ8Ekp6EA25Eoy9KUlPO2yy2ZNt3TzhcNP63atOsvKvtHBLnpaL15kUrSOnhfnZB2B7GqObYewTpKQz7SIkvtjs4BfH07Im7hm3c5GynefW1F8QfmF2Jkw3QDmi3VpnJ5ToxGtEG4j1xJLkA2m7jWgqU8HOm2M6Q-o900VDvil1SY-z0cKhcDc8DCGW-MF7mnSIleevplr5OkGLweyS9y2dhXB3x3bQhsH8ojA48aKkGlFDP_oqTj3WvqMXNAlszqogujaCOR9LIMdjnXF1Xm2kISM0nEudWMMQGdXXQWA80Ldvk9Yr52sbEa_AdgtGl-W1f5FwX88BUmkx3lFcLqTDHoX-9r3asm4zsqdy_vTw26YOrzuFw-hfDyzxCqLEETEwCZjwMv91qmLak5VNWe3zQjhbstmvOxSmwAkBgSyqISQZVvsszzVpiubxTP4ABbv\",\"id\":\"rs_68d3bd9fc3b4819381f4bd31004fa6980a768aa9a18bdd94\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":19,\"completion_tokens\":72,\"total_tokens\":91,\"cost\":0.00074375,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00002375,\"upstream_inference_completions_cost\":0.00072},\"completion_tokens_details\":{\"reasoning_tokens\":64,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 877.208875ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_openai.yaml
deleted file mode 100644
index 390c67f99e4001bad3d331a2312e1c9ac18223b2..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_gpt-5_openai.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 229
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"usage":{"include":true},"provider":{"only":["openai"]}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707037-spxAgURMfR1qAS3EgZXG\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707038,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":\"**Providing a Portuguese greeting**\\n\\nThe user asked me to say hi in Portuguese, which is a straightforward task. I consider offering \\\"Olá!\\\" and maybe \\\"Oi!\\\" as alternatives, but it's best to keep it concise. Since the instruction is to avoid heavy formatting, I can simply say, \\\"Olá!\\\" without extra explanation. A single greeting seems sufficient, so I’ll go with that. Keeping it minimal is key here!\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Providing a Portuguese greeting**\\n\\nThe user asked me to say hi in Portuguese, which is a straightforward task. I consider offering \\\"Olá!\\\" and maybe \\\"Oi!\\\" as alternatives, but it's best to keep it concise. Since the instruction is to avoid heavy formatting, I can simply say, \\\"Olá!\\\" without extra explanation. A single greeting seems sufficient, so I’ll go with that. Keeping it minimal is key here!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo071mQig1LbpUtX7BiV4Fk_0Bwldmx_ZbTYVfuYNZdgSQPyQ0hluqdDKG1hRoVBRU0kMaFOaP4Zu-4RjRCavt6DVTIdge2SZgIStqfBix-pSpvoHloaeFNXBQvW1Ed2K3Cfo8oXmhroTSgk49Ma_Ip1QHXj5rjdo8ByoIk1eP3awUsxm29FqvBH18KOKlro4lOduv-lECjZ8ZPhZwJoB9RAEkRrQbf96zQPu6U9536h7SznfySJxFgU1UXS06snS57KsZ2BSNzciB95a6Lhx_FH3DognkU-6lr-dPOC3gUEEkoVgcvqKqRUSCglKM96uJaUoy6iT7swrlN6dC4Fvlvkcph5VD94Wcjb2Wx8JYXQhEim2eWsMR88V0IFPDpeCksOV9gOoZnViLTCIXl1KHk4kBUN5Rt_TdJ6vNGaPXuKPV9QHqavtLafHFS77f4f0-VW_4J_ZR2cNwCJpDGuu7AYrrwuPYEY3zEoOrffixy-Irix7osoRua0fkDwdoYnmCK3kPAR68Vv_PkisGSswVwgXhfBzDzMUbA7LmRmrRc7VA_8mKwQbG4T0_sZ4G3BZSRjRKvwBTfZVmPnI-ygvu76sxqjDglCGefjCIBvqyWUJl1rr_JI-daW3Y3F7wPp52tbk6MLb09OR2EjOK7QjS5VIPYsyWE6us5blCbRyRx5jN8zU93effZwT_xsi1wh5juIXjPc8Vx4Gja8Z94kQk03714Y7ZmpBhFtDvKNzV_lxV-FQr4vupDj9Ifys3yJQCZlpDq3LzpcJrqAIbfpCl3W-Vfo-DvaZ9ADowNc7biKwBoZUF1mOvpbYqoKY3d_LsBtFARadorw1yWZ_Gy6pbidm2w2Q5LVR_0zhuuEhAdtr5bXIYJE-u_wB_7djLS5PNssfvippyxO4ZPqvTGOvOgDCjICvcEf4aFZhLY_TZsjkbVo6QBTISUod-Vu6-YnI4JAkXq0hScG34cxYOT22Xw7gvU7G4FiXRCp6GdSnERpvC25lPfzX_yKbyGhaAv23y52DZzC0DfJiAQND40SfsaeKu7O_ur5c3iJhczb0ANsiMgRA_ULV2SVFCrAfQKRaObGL0tZ3K6znXcMqyIJcS9Jl4lCcV1aY3JPNTgJJx51sQ718J_vcu8rDUktPrSzpzO6eu4HLlaTdEhYlVcI5hC4N0W_cSO9XETOJsKk_GqTbtEDZZepiTTZuT8RsJEawUNbMPlgbRPEQsw0PIFUxbfVWYI3-4rRVjRaG4bFRwsExhToX4Ya2CtIqR5REtEL7o618Ocz6KdVdEsu_gXSylAcsdVk242ddJTknJMVmPCvEBpWVA-DT2vCuKAnG0ZocGmz2ad-Aq2OtqmNuymu9nll5uTuQ3ZMlFn40UKsowDh23TbJywISM4IehuqIyDnbb913v\",\"id\":\"rs_68d3bd5f0b748193bdad7b450ee649250e48741d4d14670c\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":19,\"completion_tokens\":72,\"total_tokens\":91,\"cost\":0.000371875,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000011875,\"upstream_inference_completions_cost\":0.00036},\"completion_tokens_details\":{\"reasoning_tokens\":64,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.195328042s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free.yaml
index 4e242773cff46c60c2fbf252c1ded157b808a3b8..53273574c5407aae38068af610bd6710d320df5a 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free.yaml
@@ -24,10 +24,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n{\"id\":\"gen-1758709920-vowfN70ILMkGgFoMLCFm\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758709920,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":126,\"completion_tokens\":116,\"total_tokens\":242,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":112,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":114,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 764.104458ms
+ duration: 307.846917ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free_xai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free_xai.yaml
deleted file mode 100644
index 1ab2ec43a92666c8912acb8efb8e817ce06927f9..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_grok-4-fast-free_xai.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 224
- 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,"provider":{"only":["xai"]},"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{\"id\":\"gen-1758703675-BMOqQZFObhwIThWJytp2\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758703675,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":126,\"completion_tokens\":110,\"total_tokens\":236,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":112,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":108,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.1968665s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1.yaml
index 39423872728576964022e51e21d4235bdbfac493..6b0d1d1a897f2301fec21fb4c1111bdd5dd08d5f 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1.yaml
@@ -24,10 +24,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709870-G7I3WmQqxju35KgmaLRC\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758709870,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Oi! (That's \\\"hi\\\" in Portuguese.)\",\"refusal\":null,\"reasoning\":\"First, the user says: \\\"Say hi in Portuguese.\\\"\\n\\n\\n## Responding to user request \\n- The user asked for a greeting in Portuguese. \\n- \\\"Hi\\\" translates to \\\"oi\\\" in Portuguese, providing a simple and friendly response.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"First, the user says: \\\"Say hi in Portuguese.\\\"\\n\\n\\n## Responding to user request \\n- The user asked for a greeting in Portuguese. \\n- \\\"Hi\\\" translates to \\\"oi\\\" in Portuguese, providing a simple and friendly response.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":213,\"completion_tokens\":209,\"total_tokens\":422,\"cost\":0.00032154,\"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.0003135},\"completion_tokens_details\":{\"reasoning_tokens\":199,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 883.824208ms
+ duration: 717.563542ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1_xai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1_xai.yaml
deleted file mode 100644
index 89a17e003cb4e0e372a8178b06c224366fb398c0..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_grok-code-fast-1_xai.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 224
- 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,"provider":{"only":["xai"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758703062-MGhvqEvVS31K5EzwAEEN\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758703063,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! (Pronounced like \\\"oh-LAH\\\" – it's a common, friendly way to say \\\"hi\\\" in Portuguese.) If you mean something more casual, \\\"Oi!\\\" works too. \U0001F60A\",\"refusal\":null,\"reasoning\":\"First, the user said: \\\"Say hi in Portuguese\\\". This is a simple request to translate \\\"hi\\\" or greet in Portuguese.\\n\\n\\n## Interpreting user request \\n- The user asked to say \\\"hi\\\" in Portuguese, a straightforward translation task. \\n- This involves providing a simple greeting in the Portuguese language.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"First, the user said: \\\"Say hi in Portuguese\\\". This is a simple request to translate \\\"hi\\\" or greet in Portuguese.\\n\\n\\n## Interpreting user request \\n- The user asked to say \\\"hi\\\" in Portuguese, a straightforward translation task. \\n- This involves providing a simple greeting in the Portuguese language.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":213,\"completion_tokens\":258,\"total_tokens\":471,\"cost\":0.00039504,\"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.000387},\"completion_tokens_details\":{\"reasoning_tokens\":217,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.212028542s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2.yaml
index 33536b05ea66bc92c9fedc771afa8bdd33c3fbab..6eb60b12fa0422efede2c46476c542e61a617a24 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2.yaml
@@ -24,10 +24,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n{\"id\":\"gen-1758709843-fI5rQS7K0SjkdgR1cmjQ\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758709843,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":21,\"completion_tokens\":4,\"total_tokens\":25,\"cost\":0.00001406,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00000798,\"upstream_inference_completions_cost\":0.00000608},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 1.916314584s
+ duration: 1.313627291s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_baseten.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_baseten.yaml
deleted file mode 100644
index 18fe15cc32d6b341b0d4dd5b548b83e6dd59e9e4..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_baseten.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 230
- 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},"provider":{"only":["baseten"]}}'
- 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-1758698595-s4BPJzZiphaCEWkBP2EZ\",\"provider\":\"BaseTen\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698595,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":null,\"usage\":{\"prompt_tokens\":21,\"completion_tokens\":4,\"total_tokens\":25,\"cost\":0.0000226,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000126,\"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: 605.664584ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_chutes.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_chutes.yaml
deleted file mode 100644
index 4890520c6356ceaa01485d480bd5a81c20d55c61..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_chutes.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 229
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"provider":{"only":["chutes"]},"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-1758698425-n4rOtuTfFzehUSzSJu0b\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698425,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Oi!\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":21,\"completion_tokens\":3,\"total_tokens\":24,\"cost\":0.00001254,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00000798,\"upstream_inference_completions_cost\":0.00000456},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.164011792s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_deepinfra.yaml
deleted file mode 100644
index cfc8d416712670b7d41cf9143f72a74255f6dee6..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_deepinfra.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 232
- 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,"provider":{"only":["deepinfra"]},"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-1758698443-ItyquiTFszk6knnpdwFu\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698443,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 632.003167ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_fireworks.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_fireworks.yaml
deleted file mode 100644
index c1e85a4f0fca325b78c4bc52dff2c13e858990ae..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_fireworks.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 232
- 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},"provider":{"only":["fireworks"]}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758698516-61p0hZy1MMjTU54A1IS8\",\"provider\":\"Fireworks\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698516,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Oi!\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":20,\"completion_tokens\":3,\"total_tokens\":23,\"cost\":0.0000195,\"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.0000075},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 4.454277375s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_groq.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_groq.yaml
deleted file mode 100644
index 18382a81452b157686f823ce504ecb38cd9c5ed8..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_groq.yaml
+++ /dev/null
@@ -1,62 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 227
- 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,"provider":{"only":["groq"]},"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":"Groq"}},"user_id":"user_2zMGmKqlf4zmAvL9snVImB1Z1ZQ"}'
- headers:
- Content-Type:
- - application/json
- status: 429 Too Many Requests
- code: 429
- duration: 1.880177958s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 227
- 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,"provider":{"only":["groq"]},"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: '{"id":"gen-1758703127-WCftfHLMV08JpLbeM0z1","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion","created":1758703127,"choices":[{"logprobs":null,"finish_reason":"stop","native_finish_reason":"stop","index":0,"message":{"role":"assistant","content":"Olá!","refusal":null,"reasoning":null}}],"system_fingerprint":"fp_6e6ff3688b","usage":{"prompt_tokens":20,"completion_tokens":4,"total_tokens":24,"cost":0.000032,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002,"upstream_inference_completions_cost":0.000012},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}'
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 262.669375ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_moonshotai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_moonshotai.yaml
deleted file mode 100644
index a181301026ec260193739106613a24b15abd3b17..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_moonshotai.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 233
- 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,"provider":{"only":["moonshotai"]},"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-1758698545-WIWEbcRL9bx2d8mQzWvE\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698545,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ec889fbb\",\"usage\":{\"prompt_tokens\":20,\"completion_tokens\":4,\"total_tokens\":24,\"cost\":0.000044,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000024,\"upstream_inference_completions_cost\":0.00002},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 898.509333ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_moonshotai/turbo.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_moonshotai/turbo.yaml
deleted file mode 100644
index afe3409189ab2fd0b0e5274b1477a9b9204eb8a3..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_moonshotai/turbo.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 239
- 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,"provider":{"only":["moonshotai/turbo"]},"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-1758698616-esBqN2uZ7FZH5QIQif8N\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698616,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ec889fbb\",\"usage\":{\"prompt_tokens\":20,\"completion_tokens\":4,\"total_tokens\":24,\"cost\":0.000044,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000024,\"upstream_inference_completions_cost\":0.00002},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.017219083s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_novita.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_novita.yaml
deleted file mode 100644
index fdc2300ff359e3338a486296bbad760a54046f4c..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_novita.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 229
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"usage":{"include":true},"provider":{"only":["novita"]}}'
- 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-1758698567-XpCbjE7iALXFSaoAj9P0\",\"provider\":\"Novita\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698567,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Oi!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ef28f882\",\"usage\":{\"prompt_tokens\":20,\"completion_tokens\":3,\"total_tokens\":23,\"cost\":0.0000195,\"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.0000075},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.996124125s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_siliconflow.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_siliconflow.yaml
deleted file mode 100644
index 154cfeb008c2c4efc153f484b8619d4f4b88ca3e..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_siliconflow.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 234
- 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,"provider":{"only":["siliconflow"]},"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-1758698455-D3lYN3xcXHkMN97UzO2b\",\"provider\":\"SiliconFlow\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698455,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Oi!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":21,\"completion_tokens\":2,\"total_tokens\":23,\"cost\":0.00001676,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00001218,\"upstream_inference_completions_cost\":0.00000458},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 2.047593167s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_together.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_together.yaml
deleted file mode 100644
index a8595f811b0a4f9b1a86c220c871f3a685773436..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_together.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 231
- 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,"provider":{"only":["together"]},"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-1758698603-JNe50ETRqMvU3Fxwo8BB\",\"provider\":\"Together\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698603,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Oi!\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":21,\"completion_tokens\":3,\"total_tokens\":24,\"cost\":0.00003,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000021,\"upstream_inference_completions_cost\":0.000009},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.012277042s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_wandb.yaml b/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_wandb.yaml
deleted file mode 100644
index 4dee5b96bb16ed18dce44233c317fa18b88703c7..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_kimi-k2_wandb.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 228
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"provider":{"only":["wandb"]},"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-1758698626-WTRmw6VsqFE0E8MVFFMz\",\"provider\":\"WandB\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698626,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá!\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":20,\"completion_tokens\":4,\"total_tokens\":24,\"cost\":0.000043,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000027,\"upstream_inference_completions_cost\":0.000016},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.017699125s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4.yaml
index de2db08c3ec5fdf9f54ff3edd3570380de6a085d..1b75b4a03d1586e2f68b53543f93a4073e5437d9 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4.yaml
@@ -24,17 +24,35 @@ interactions:
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-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"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-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"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-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"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-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"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-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n\n(That","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":""},"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: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":"hello\" in Portuguese. If you want a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":" more casual","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"hi,\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":" you could also","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":" say \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi!\")","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+ data: {"id":"gen-1758709895-PDp18f4GMTDzqXjD44HF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709895,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":36,"total_tokens":52,"cost":0.000588,"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.00054},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -43,4 +61,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 2.318227084s
+ duration: 2.008673791s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_amazon-bedrock.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_amazon-bedrock.yaml
deleted file mode 100644
index bf4f593d502ee10189a1875dfa6d78afd546b84f..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_amazon-bedrock.yaml
+++ /dev/null
@@ -1,48 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 293
- 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},"provider":{"only":["amazon-bedrock"]},"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-1758703515-7P3UtpyYBMgVQX1Q7pDa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703515,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703515-7P3UtpyYBMgVQX1Q7pDa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703515,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703515-7P3UtpyYBMgVQX1Q7pDa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703515,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá! ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703515-7P3UtpyYBMgVQX1Q7pDa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703515,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n\n(That's \"hi\" in Portuguese!)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703515-7P3UtpyYBMgVQX1Q7pDa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703515,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703515-7P3UtpyYBMgVQX1Q7pDa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703515,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703515-7P3UtpyYBMgVQX1Q7pDa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703515,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":18,"total_tokens":34,"cost":0.000318,"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.00027},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 2.071447959s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_anthropic.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_anthropic.yaml
deleted file mode 100644
index 047296e4d5340de3a0f9cfbf80ed2a309ca5c2c5..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_anthropic.yaml
+++ /dev/null
@@ -1,54 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 288
- 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},"provider":{"only":["anthropic"]},"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-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n\n(That's \"hello\" in Portuguese.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":" You could also say \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi!\" for a more casual \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":"hi!\")","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703457-azEEMuDqqKhlLMdpq4jl","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703457,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":33,"total_tokens":49,"cost":0.000543,"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.000495},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 2.166245167s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex.yaml
deleted file mode 100644
index b27b9d8749ef6585388cfdf0421c07111ff15c55..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex.yaml
+++ /dev/null
@@ -1,60 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 292
- 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},"provider":{"only":["google-vertex"]},"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-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá! (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"That's \"hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"\" in Portuguese)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n\nYou can also say","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi!\" which is a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":" more casual way to say hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":" in Portuguese.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703410-VHZouOacr7dEmAytFMJv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703410,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":38,"total_tokens":54,"cost":0.000618,"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.00057},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 2.17237075s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex/europe.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex/europe.yaml
deleted file mode 100644
index 5b0fb79af66b83b7b0dfee75c1d295f9ca889fb6..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex/europe.yaml
+++ /dev/null
@@ -1,86 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 299
- 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},"provider":{"only":["google-vertex/europe"]},"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-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá! (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oh","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"-LA","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"H","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":")","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n\nThis","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" is the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" most common","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" way","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" to say \"hi\" in Portuguese.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" You","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" coul","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"d also use","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi!\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"OY","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":")","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" which","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" is more","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":" casual and friendly.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703491-ae2BWYa9Vz5ViELaIMv9","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703491,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":48,"total_tokens":64,"cost":0.000768,"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.00072},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.528290833s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex/global.yaml
deleted file mode 100644
index 77e796d5c888407ab03bbfb64ed0bb7ced897f3b..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_claude-sonnet-4_google-vertex/global.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 299
- 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},"provider":{"only":["google-vertex/global"]},"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-1758703436-WC0BFNzETFmaPHLJTryv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703436,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703436-WC0BFNzETFmaPHLJTryv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703436,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703436-WC0BFNzETFmaPHLJTryv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703436,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703436-WC0BFNzETFmaPHLJTryv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703436,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703436-WC0BFNzETFmaPHLJTryv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703436,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703436-WC0BFNzETFmaPHLJTryv","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703436,"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: 1.38509775s
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
index 853769db565bd02ccfe72d1f83030e23d23e3ad8..4c7627372532fdf2ae78aa4f970bc9e29c369a3a 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_deepseek-chat-v3.1-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_deepseek-chat-v3.1-free.yaml
@@ -24,25 +24,13 @@ interactions:
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-1758709953-bw0Rgn4YpPzMDfDKDhwt","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709954,"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-1758709953-bw0Rgn4YpPzMDfDKDhwt","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709954,"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-1758709953-bw0Rgn4YpPzMDfDKDhwt","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709954,"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":"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: {"id":"gen-1758709953-bw0Rgn4YpPzMDfDKDhwt","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709954,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":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}}}
data: [DONE]
@@ -51,4 +39,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 10.257364292s
+ duration: 498.817125ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_deepseek-chat-v3.1-free_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_deepseek-chat-v3.1-free_deepinfra.yaml
deleted file mode 100644
index 5990788280604df6c575892b1b42b7c46f4291a6..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_deepseek-chat-v3.1-free_deepinfra.yaml
+++ /dev/null
@@ -1,42 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 295
- 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},"provider":{"only":["deepinfra"]},"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-1758704087-hMyTeT1IByO3juxWOYhC","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704087,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704087-hMyTeT1IByO3juxWOYhC","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704087,"choices":[{"index":0,"delta":{"role":"assistant","content":"á!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704087-hMyTeT1IByO3juxWOYhC","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758704087-hMyTeT1IByO3juxWOYhC","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704087,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":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}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 606.512917ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash.yaml
index 113f124ed6c52f8f9a5a1e6f882b43d584781eea..b75145ff361a873338cc50fadaaafc6a6572a873 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash.yaml
@@ -24,11 +24,11 @@ interactions:
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-1758709943-guuvMhpAg40kORcXkBg0","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709943,"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-1758709943-guuvMhpAg40kORcXkBg0","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709943,"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: {"id":"gen-1758709943-guuvMhpAg40kORcXkBg0","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709943,"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.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}}}
data: [DONE]
@@ -37,4 +37,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 1.259653584s
+ duration: 660.468583ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash_google-ai-studio.yaml
deleted file mode 100644
index d92b0f9ed8c425996b5df9ca9ced60909c8c1d97..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,40 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 297
- 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},"provider":{"only":["google-ai-studio"]},"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-1758703928-EupDIa9KxpLlcvQZeCZt","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703928,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703928-EupDIa9KxpLlcvQZeCZt","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703928,"choices":[{"index":0,"delta":{"role":"assistant","content":"!\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703928-EupDIa9KxpLlcvQZeCZt","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703928,"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.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}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.027754375s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash_google-vertex.yaml
deleted file mode 100644
index 6c28354f22d8f0e2b6670ab743655d30421a886e..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.0-flash_google-vertex.yaml
+++ /dev/null
@@ -1,40 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 294
- 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},"provider":{"only":["google-vertex"]},"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-1758703937-c3zARIw7rBbUWPdGUrr7","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703937,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703937-c3zARIw7rBbUWPdGUrr7","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703937,"choices":[{"index":0,"delta":{"role":"assistant","content":"!\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703937-c3zARIw7rBbUWPdGUrr7","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703937,"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.292658542s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash.yaml
index bb65a921a1ef40f1b35645c21a273ce0963c9bb9..10dc0bd68e89239f4cd375ee915b5e63e1bbbd83 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash.yaml
@@ -24,11 +24,13 @@ interactions:
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-1758709936-CU3C80RgLtGlwkaBFHis","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709936,"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-1758709936-CU3C80RgLtGlwkaBFHis","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709936,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","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":""},"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: {"id":"gen-1758709936-CU3C80RgLtGlwkaBFHis","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709936,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
+
+ data: {"id":"gen-1758709936-CU3C80RgLtGlwkaBFHis","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709936,"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]
@@ -37,4 +39,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 1.112134959s
+ duration: 817.282792ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-ai-studio.yaml
deleted file mode 100644
index 8d3d28a96b08d8ab27e90e54db5eb5de6ace989b..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,40 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 293
- 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},"provider":{"only":["google-ai-studio"]},"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-1758703826-tRd6a7hwbYyJemlBwJ86","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703826,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703826-tRd6a7hwbYyJemlBwJ86","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703826,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703826-tRd6a7hwbYyJemlBwJ86","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703826,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":11,"completion_tokens":2,"total_tokens":13,"cost":0.0000083,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000033,"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: 466.110542ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-vertex.yaml
deleted file mode 100644
index ae5242287905eb2958a39b66377d531316e4a8d7..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-vertex.yaml
+++ /dev/null
@@ -1,42 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 290
- 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},"provider":{"only":["google-vertex"]},"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-1758703834-PqKqBUb0y22965iY9gBA","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703834,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703834-PqKqBUb0y22965iY9gBA","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703834,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá\" is the most","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703834-PqKqBUb0y22965iY9gBA","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703834,"choices":[{"index":0,"delta":{"role":"assistant","content":" common way to say \"hi\" or \"hello\" in Portuguese.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703834-PqKqBUb0y22965iY9gBA","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703834,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":9,"completion_tokens":20,"total_tokens":29,"cost":0.0000527,"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.00005},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 513.528709ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-vertex/global.yaml
deleted file mode 100644
index 19cbf29b927efaf8f75a70f4a8cdae16599a872d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gemini-2.5-flash_google-vertex/global.yaml
+++ /dev/null
@@ -1,40 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 297
- 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},"provider":{"only":["google-vertex/global"]},"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-1758703819-acg5QcYB43aUYzXcQLgs","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703819,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703819-acg5QcYB43aUYzXcQLgs","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703819,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703819-acg5QcYB43aUYzXcQLgs","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703819,"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: 559.291709ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_glm-4.5.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_glm-4.5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..440c68f15b395388f819f34746915449fd766677
--- /dev/null
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_glm-4.5.yaml
@@ -0,0 +1,296 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 241
+ host: ""
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"z-ai/glm-4.5","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-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.text","text":" wants","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hello","reasoning_details":[{"type":"reasoning.text","text":"hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" commonly","reasoning_details":[{"type":"reasoning.text","text":" commonly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translated","reasoning_details":[{"type":"reasoning.text","text":" translated","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.text","text":" are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal","reasoning_details":[{"type":"reasoning.text","text":" informal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-speaking","reasoning_details":[{"type":"reasoning.text","text":"-speaking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" countries","reasoning_details":[{"type":"reasoning.text","text":" countries","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.text","text":" like","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil","reasoning_details":[{"type":"reasoning.text","text":" Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portugal","reasoning_details":[{"type":"reasoning.text","text":" Portugal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Angola","reasoning_details":[{"type":"reasoning.text","text":" Angola","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Moz","reasoning_details":[{"type":"reasoning.text","text":" Moz","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ambique","reasoning_details":[{"type":"reasoning.text","text":"ambique","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" etc","reasoning_details":[{"type":"reasoning.text","text":" etc","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n","reasoning_details":[{"type":"reasoning.text","text":".\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" casual","reasoning_details":[{"type":"reasoning.text","text":" casual","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" commonly","reasoning_details":[{"type":"reasoning.text","text":" commonly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil","reasoning_details":[{"type":"reasoning.text","text":" Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" while","reasoning_details":[{"type":"reasoning.text","text":" while","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" slightly","reasoning_details":[{"type":"reasoning.text","text":" slightly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal","reasoning_details":[{"type":"reasoning.text","text":" formal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.text","text":" but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" still","reasoning_details":[{"type":"reasoning.text","text":" still","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" everyday","reasoning_details":[{"type":"reasoning.text","text":" everyday","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" situations","reasoning_details":[{"type":"reasoning.text","text":" situations","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.text","text":" provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translations","reasoning_details":[{"type":"reasoning.text","text":" translations","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" give","reasoning_details":[{"type":"reasoning.text","text":" give","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" complete","reasoning_details":[{"type":"reasoning.text","text":" complete","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.text","text":" answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"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}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"Hi","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" or","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"á","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"\".","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" Both","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" are","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" common","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" greetings","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" with","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" being","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" casual","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"á","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" slightly","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":" formal","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+ data: {"id":"gen-1758710037-SvVFh9RGkHtsTFejkmgg","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710037,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":18,"completion_tokens":131,"total_tokens":149,"cost":0.000299,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000108,"upstream_inference_completions_cost":0.0002882},"completion_tokens_details":{"reasoning_tokens":109,"image_tokens":0}}}
+
+ data: [DONE]
+
+ headers:
+ Content-Type:
+ - text/event-stream
+ status: 200 OK
+ code: 200
+ duration: 1.7910005s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5.yaml
index 828a7798bf336d947e20a06b9b5b7061ca7285e7..b57cc156769a5b96b38260623d84fbedb64c3e57 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5.yaml
@@ -24,17 +24,17 @@ interactions:
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-1758709988-nVhkZGAgcDLlvtCygw4h","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758709988,"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-1758709988-nVhkZGAgcDLlvtCygw4h","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758709988,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo08jndDbqrrN0GRqZ73vDkhlAxmzQuTxZJ6BxX7jdQqDFykBwBvm3o3iLDdf1c0Qe4kVM_Upe6e1ZtyJNnWkpSaQDQt7rrwpFiQyazwbe9qF3JVrj94uAsdPb1OLJxkGuYoVKPBleeIdNN3VCJpGKxdWo5B0kdg_CiR7P_phvL7davft3-8LHgZo4MFDLllMQythnGqq8iBU4VVW7dBjPUyyoVUmJHgD_cGV5maRX2XRb9MzaitUl-CbCCp6ChOBYCZQLc8sVc7ovOje56jQvfRugKpcsAMdXvYW1K3mf1wSUIud3rFFwZcpdZzgMyJf0oGmk6oci1gWV6m7ssxi-CIvElMfRmOpMna2VrQG-JhuZD2bt3pH2MNj-Vvj-1il7pz2KnYO10_B2ss4_iMp-d31HPR2wVLrJa8D__sstuku9EQwVxNCKS_u7xwf8oIODlQrO3cQ873nNILLza4UvqwBMnUGEhbOajhep-hBLTRtprfSIY3EX3d_Xo__9Aww7lZ_OhWZWWhyC_C4nFQ8_enIJumdMDt-gBzijm7uC4naDeHgUngmiKGHEGC6Fz18jLvh00AhKwrAfurqoXq9lVtaOQiYqyKGD7fYXNQ0exJbIaThj1aWiYXVtYCKp9HdOVwJYg5P7edLahkRWK4A679B-CwvXQCeS172aR-9H3HbDA_k3-Rkt-kHlnmNmU1pFvyP1Pdz5Jn31arHIAfhu1c3x1_Hd9tqRxB_srBt72WZWKay0aDjlZeM1001fZx8ejfdu7iYZWHr0h1nY4uGOUMH3yom-pAQm_b_8LHzW6rHRyNorFq3BSgcYKL25_qeMj8lB_xXEjWoXPh91JFLO86d1ts9n62TdW-46TJyJc2ABS68VOQmPNIT6mMp2HLPUQG76X7lo0vElPZeK2yZfJ6zB5rnp7q1vZgVEpJmc70hoCLgUrqkHGZ-1DTrCQg5NWw-boZeCLQtw2ENzRyhYMMsXLfux4_quWLYmbNDK7ynHHwt7okd_KRvO2t_KoQyMHNcHCkznt7eC2VFkK5Zvi1VH1fNb3CYf7AFgqXTZOLp12Ewp6rcQdxzQMjunBTHH3ao5un2i-k7Wgyfdsc7yz7N_9-qUqWwx2VkEZ2rYJUCoNi6QhBZEYUCf8w4GG_RJhZ0Xp4tRnrHeXsAbTRY9_ZACwvONuWIImZXz1W0QfrwSQocQiMyftLLVUGlkyQuI33RQDZRQbHa2A4OULbLLNK1BDciAGqI-Yk0NgHhCIXuYZPZs2hfezuInzIH5DkIcKoL8znLlUztEIPyJh6KZV8y8zB-amlOnR0fAxIoYsoWr01VMSOE4A9y2Uvg5CqeYuMMnis-FA_jlJIREhiDsH9XoBo3V-G6L1z5aKMMJhQ1hgvflR0YAx88Eu2e18nmZ3uvi9PWom3li0xJCwb-lu94LMzfyYRI51zaJVibR-hae34wLYBWXnp1HF61qoNsZqbOuBCeYn7pXRHBdTsDG7AmTGi0QynPnbdymisALc8gY4ZhxLZlVH2Bd5p0pggNFWqhfqRFEHZ7aeQaMdJF7daaYFEl8IvocWX6uW5hcOzMIkcE=","id":"rs_68d3c8e5f6188196b19bf9977a4dc562062c29828b2ad4fa","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-1758709988-nVhkZGAgcDLlvtCygw4h","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758709988,"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-1758709988-nVhkZGAgcDLlvtCygw4h","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758709988,"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-1758709988-nVhkZGAgcDLlvtCygw4h","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758709988,"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: {"id":"gen-1758709988-nVhkZGAgcDLlvtCygw4h","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758709988,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":19,"completion_tokens":136,"total_tokens":155,"cost":0.000691875,"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.00068},"completion_tokens_details":{"reasoning_tokens":128,"image_tokens":0}}}
data: [DONE]
@@ -43,4 +43,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 1.5629425s
+ duration: 881.33025ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_azure.yaml
deleted file mode 100644
index 34652ca00204d966cf8157d260c9499cac80124d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_azure.yaml
+++ /dev/null
@@ -1,236 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 282
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"provider":{"only":["azure"]},"usage":{"include":true},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Respond","reasoning_details":[{"type":"reasoning.summary","summary":"**Respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ing","reasoning_details":[{"type":"reasoning.summary","summary":"ing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.summary","summary":" Portuguese","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nThe","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nThe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.summary","summary":" wants","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.summary","summary":" me","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hi","reasoning_details":[{"type":"reasoning.summary","summary":" hi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.summary","summary":" Portuguese","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" keep","reasoning_details":[{"type":"reasoning.summary","summary":" keep","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.summary","summary":" simple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" respond","reasoning_details":[{"type":"reasoning.summary","summary":" respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" either","reasoning_details":[{"type":"reasoning.summary","summary":" either","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.summary","summary":"Olá","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.summary","summary":"Oi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Since","reasoning_details":[{"type":"reasoning.summary","summary":" Since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" “","reasoning_details":[{"type":"reasoning.summary","summary":" “","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.summary","summary":"hi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"”","reasoning_details":[{"type":"reasoning.summary","summary":"”","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal","reasoning_details":[{"type":"reasoning.summary","summary":" informal","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" think","reasoning_details":[{"type":"reasoning.summary","summary":" think","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.summary","summary":"Oi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"","reasoning_details":[{"type":"reasoning.summary","summary":"!\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" fits","reasoning_details":[{"type":"reasoning.summary","summary":" fits","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" better","reasoning_details":[{"type":"reasoning.summary","summary":" better","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Maybe","reasoning_details":[{"type":"reasoning.summary","summary":" Maybe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" could","reasoning_details":[{"type":"reasoning.summary","summary":" could","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" even","reasoning_details":[{"type":"reasoning.summary","summary":" even","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" include","reasoning_details":[{"type":"reasoning.summary","summary":" include","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" accents","reasoning_details":[{"type":"reasoning.summary","summary":" accents","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stick","reasoning_details":[{"type":"reasoning.summary","summary":" stick","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" minimal","reasoning_details":[{"type":"reasoning.summary","summary":" minimal","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" approach","reasoning_details":[{"type":"reasoning.summary","summary":" approach","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" overall","reasoning_details":[{"type":"reasoning.summary","summary":" overall","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.summary","summary":"Oi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"","reasoning_details":[{"type":"reasoning.summary","summary":"!\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" feels","reasoning_details":[{"type":"reasoning.summary","summary":" feels","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.summary","summary":" more","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" casual","reasoning_details":[{"type":"reasoning.summary","summary":" casual","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" friendly","reasoning_details":[{"type":"reasoning.summary","summary":" friendly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" aligning","reasoning_details":[{"type":"reasoning.summary","summary":" aligning","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" well","reasoning_details":[{"type":"reasoning.summary","summary":" well","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" their","reasoning_details":[{"type":"reasoning.summary","summary":" their","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" request","reasoning_details":[{"type":"reasoning.summary","summary":" request","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.summary","summary":" It","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" straightforward","reasoning_details":[{"type":"reasoning.summary","summary":" straightforward","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" fit","reasoning_details":[{"type":"reasoning.summary","summary":" fit","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" their","reasoning_details":[{"type":"reasoning.summary","summary":" their","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" needs","reasoning_details":[{"type":"reasoning.summary","summary":" needs","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo072nH-KPdNEyp--cq-0PVVBSsrTy4XsFZoEdg_SdjJ0GGUofAe_vEZ4dGzuvpjL4UvXQ3RQHV-UdID9O76aNbCO4trP_3FM0xFTu0M2d7yCciadjwEVt7YbV4dd8DzgP-FD77wNzvQVzaDP0TJ7nTM6332j2Cds9q22dhBN0qGJYUFXMkybWQoyh932mLK3LjfmKJjyVY6kR-SDD0VCdVWYRlVI2XefmomTFG46K9kTMr_nEKrnm_JYx73_ugHk6aKuJfkqNe2Dyc8uYyOuBgx-_Ccx5wQ6VeYJl-VhoZRHW4jbCdlSs1vALh3154HJqRRT8bN07miR2CotLBe9mgwN83irOysISfLbDiinwdTQkb4I06b3wg5nhPF4flJM9KcbBYE_xdh4KiU4fXy3Mo3DKV5Qmxug5K7rZr2xz0isvpAYyH59j-4rBbUMftaBZe5QDh7OZfeX6XOcnx5KPrKgcCSvwaSt0l232-HZyEOqveyQDWNBF9-LwrZe6SKHLRJxwO7L7UhJcFvSvw6CDKCYrSk1uTy9vKucnuVrqGTwIet1eMHzoBNnrtpCguQ5dV9kOMBAGRLcQX-b4Rgaag9s64BV7i6JcW9r_UsgjQeWVWEMSN20xNy5H1kxApkMoB9jmkSu947zGaF5dSORcIhAW5AGjGqjs-rRtqt3XEEi34L_1onrIM-u6aFLaPHpzSSnx-rMQC81dXUS6rYNrc0QStV3TyS8hy3QcUqgrTasFSym3hGZCCz2yvl5OzFRbE7Lu-S61CeS1RprJboIq4FuzJ2EuR_VR58Cwtr0srwjCE_phJ4lvdJ6e4PS0VXuhvE_UiLUe4fpfY4-S1NiyVj0v5swJHPhBUWU--k07SP2OH-_8G-je6MGiXOv1cZ18ZN95kkm6tWTEWNLNq6efBTuRPUZWGRI_tbo9MB4Pt9NiQNEGBl2xjQ7tvRopXWrt7fp5wGP683xb2lx7OfZL-Kmzm7Sao_OqFboCZnJ3OOdHfy84QD-dihyAf4x8Crk9Zf5dalRGcQLJoApfpJOePQ2n5bUPzEqT_ibsKCN-_naEuowrnA2ejJhwjxMoPQ0J90_6cAfEGmdp78ijcNRSPgjZDFLLQFt6iUGgGzQ_bgeZqBjk8V9_NGzFnx-bOz7NWFoNqNdhFgcMfufz03IyBrRz8lQibjokU-LUxHviMw41v9Z2ZCQyQEgJFbtGWAdLzXU1wQ74lcV2CRs1PTPoEq1wY2Brd1SSruPqvoobh5rKTQnLu5VDonYbLldOmCF0vDlkB_ShprjkAzvfbtaCOtJhsDcuWhQxLeGT2t7GNy0dW6XiDM7o1T-9MIXL1e4OQ3xvWl4Il7GCtWr89a9B1wDoTYkzQ342REhlZDmRq66ydPY=","id":"rs_68d3bda3e15c81948b941d898e92fbc202e480e3ecf90aae","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707107-USuumgwP0CJxbdQXw1I1","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707107,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":19,"completion_tokens":72,"total_tokens":91,"cost":0.00074375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002375,"upstream_inference_completions_cost":0.00072},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 563.57075ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_openai.yaml
deleted file mode 100644
index b09c2d140bd89ebe89ea86f9bf1f8d99278bd9d4..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_gpt-5_openai.yaml
+++ /dev/null
@@ -1,228 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 283
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"provider":{"only":["openai"]},"usage":{"include":true},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Respond","reasoning_details":[{"type":"reasoning.summary","summary":"**Respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ing","reasoning_details":[{"type":"reasoning.summary","summary":"ing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.summary","summary":" Portuguese","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nThe","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nThe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simply","reasoning_details":[{"type":"reasoning.summary","summary":" simply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.summary","summary":" asked","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.summary","summary":" me","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.summary","summary":"hi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.summary","summary":" Portuguese","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" think","reasoning_details":[{"type":"reasoning.summary","summary":" think","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" best","reasoning_details":[{"type":"reasoning.summary","summary":" best","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way","reasoning_details":[{"type":"reasoning.summary","summary":" way","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" respond","reasoning_details":[{"type":"reasoning.summary","summary":" respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.summary","summary":"Olá","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.summary","summary":"Oi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.summary","summary":",\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.summary","summary":" of","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.summary","summary":" are","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.summary","summary":" common","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.summary","summary":" greetings","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.summary","summary":"Olá","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"","reasoning_details":[{"type":"reasoning.summary","summary":"!\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" because","reasoning_details":[{"type":"reasoning.summary","summary":" because","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" feels","reasoning_details":[{"type":"reasoning.summary","summary":" feels","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bit","reasoning_details":[{"type":"reasoning.summary","summary":" bit","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.summary","summary":" more","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal","reasoning_details":[{"type":"reasoning.summary","summary":" formal","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" friendly","reasoning_details":[{"type":"reasoning.summary","summary":" friendly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Keeping","reasoning_details":[{"type":"reasoning.summary","summary":" Keeping","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" concise","reasoning_details":[{"type":"reasoning.summary","summary":" concise","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" key","reasoning_details":[{"type":"reasoning.summary","summary":" key","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" app","reasoning_details":[{"type":"reasoning.summary","summary":" app","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" might","reasoning_details":[{"type":"reasoning.summary","summary":" might","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" support","reasoning_details":[{"type":"reasoning.summary","summary":" support","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" heavy","reasoning_details":[{"type":"reasoning.summary","summary":" heavy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formatting","reasoning_details":[{"type":"reasoning.summary","summary":" formatting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":";","reasoning_details":[{"type":"reasoning.summary","summary":";","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stick","reasoning_details":[{"type":"reasoning.summary","summary":" stick","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" saying","reasoning_details":[{"type":"reasoning.summary","summary":" saying","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.summary","summary":"Olá","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"","reasoning_details":[{"type":"reasoning.summary","summary":"!\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" directly","reasoning_details":[{"type":"reasoning.summary","summary":" directly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" feel","reasoning_details":[{"type":"reasoning.summary","summary":" feel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" happy","reasoning_details":[{"type":"reasoning.summary","summary":" happy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.summary","summary":" simple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greeting","reasoning_details":[{"type":"reasoning.summary","summary":" greeting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo071rklNSITSrGou20yk6p-H7W3MxumyPcxVf3Hh55T4s2uS_EWjloDTpp1k9jkZK_oNlEnFfoJEXGAM_EOJs8fcYJEML3aZLm_oCK1yj4TGGg-pJzt-p2OGFhdD-t4SlQPPCVfy4pY6pCXZLm60QRdcM0ac2GbLfCyULOgWxVIrmKywN-Re2xuxhk6b0bqsoM6XLDlBQkeLRVR9Cqw6zsoG7-S07y-YTjrhNpedJf8OSoMD26DfiH8LD4YWTq4VjKRFDSR13Q6iKisyy-94si9Wi_s6J9KkfKUhFP0E_p0dBazNi9toSVagyck5uujgq0Y3axCr6CTbCktOXst480w-xEbEDGPXmfBJikLh3J0b-C_tDbga1r4Z_E9eP4PCJMnyHTOceN2x1_T0IMXAd5xskWx1ILF5kVePO5AZSiOwL8NusePZ_Oha4QcPGM2dXRD1aq9colIa1JJpTBM1_Pi8GYQFD4BwuTpGTrfHpSANc8-SPjZDO0BtU9QJ9zmNfdzFH6OR5yHfrTUECeDfAf_UDG5Xvn-S4wVhXd5LSjeqPq-JFYmmB_bBwjvi_b9NtqO0x9wvuMRcuOLEQVrvn3ST5NPeMTtu8rowJFBl3_2GAZVgU1haJJf3LqsT9vZ5awRwAgos-lExPxp_LrNPQ7MMynjKhgfxzBjpbx9-OPpPg15alCWWYs_iQakulqcIQ1MAPsL72PbZmnBuiHe0A-RZ5fXRPC1JaIXQZxmtzP0VBJM57IERup9GmN2-oRYFeNKnz-AMxwMpBjVRS5_bC0bUTCXxQshD5az-7Y2S-5XzMpi7rTbqwEls3lu5rWuqc--gKnuclcvad2BlwqmjtQTEt9u-Het-r-w7WR-dLXRWDSNkf-GCGGdmjinL-ZlZiE1WopcTeVTnyTuTv-qBtQ-03r5TixZSB7UAGf6xu3KrJDDce6hIEDD5HaX8bTwCaWuPwujDqs6m4aStRerIeGHuORUDHUimOk0Vl-rBtn9jHrvrVHA54agwDiUJj_eiQ_n7OuAep4uFf6n5fWm0EVNH5o4mcccA9ln6WnLsEaI9-i-aAzZ-G4R7keuJvTlz_yB2ama7AE9ohiUUrsonKzyJ2AwsOQNOlsfl_MiHZ31NDr-oku0ll7eQYGzny0oX4rEHYFDkymIGby8iOF0OjQBPtST2FAOAHbgxY3jT9VM4N7jKG-NuNhZZQazlC9QxeIH2855yE0qI9JLwK6TePf0ycXkt3GDV_xFJX-48V5tcwNS4=","id":"rs_68d3bd684ab48195975cca6d4f577f880de911a007184f64","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707047-XQBhWz1uIRVefWP0svZB","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707047,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":19,"completion_tokens":72,"total_tokens":91,"cost":0.00074375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002375,"upstream_inference_completions_cost":0.00072},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.054729209s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free.yaml
index 4e4334a5c607e056c08fe5cc70f05e9c11134aac..5d932c0e604de9926bbe8da9455a54c4c3af1e50 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free.yaml
@@ -24,267 +24,261 @@ interactions:
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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"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":"That's","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"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":"hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"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-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"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":" 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: {"id":"gen-1758709922-mNavoEwHfO8o2eSafBwj","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709922,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":126,"completion_tokens":126,"total_tokens":252,"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":116,"image_tokens":0}}}
data: [DONE]
@@ -293,4 +287,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 611.697959ms
+ duration: 507.960875ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free_xai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free_xai.yaml
deleted file mode 100644
index a790429d72d2c93a021a74f15ece504ce4390f2e..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-4-fast-free_xai.yaml
+++ /dev/null
@@ -1,206 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 278
- 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},"provider":{"only":["xai"]},"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-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"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-1758703680-f2vFWU0eBGKFNtBsecDH","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703680,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":126,"completion_tokens":84,"total_tokens":210,"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":82,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 535.219208ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1.yaml
index e8c01b6e7fd31b57532f5e646d79829b1c051216..0ab2a1231e96f34c0160d14246f00ec0ea6a63bb 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1.yaml
@@ -23,10 +23,422 @@ interactions:
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"
+ body: |+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.text","text":" simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" casual","reasoning_details":[{"type":"reasoning.text","text":" casual","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" request","reasoning_details":[{"type":"reasoning.text","text":" request","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" As","reasoning_details":[{"type":"reasoning.text","text":" As","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Gro","reasoning_details":[{"type":"reasoning.text","text":" Gro","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"k","reasoning_details":[{"type":"reasoning.text","text":"k","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'm","reasoning_details":[{"type":"reasoning.text","text":" I'm","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" supposed","reasoning_details":[{"type":"reasoning.text","text":" supposed","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.text","text":" be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" helpful","reasoning_details":[{"type":"reasoning.text","text":" helpful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" maximally","reasoning_details":[{"type":"reasoning.text","text":" maximally","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informative","reasoning_details":[{"type":"reasoning.text","text":" informative","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.text","text":" but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.text","text":" also","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" follow","reasoning_details":[{"type":"reasoning.text","text":" follow","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" guidelines","reasoning_details":[{"type":"reasoning.text","text":" guidelines","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" respond","reasoning_details":[{"type":"reasoning.text","text":" respond","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" truthfully","reasoning_details":[{"type":"reasoning.text","text":" truthfully","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.text","text":" be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" economic","reasoning_details":[{"type":"reasoning.text","text":" economic","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" no","reasoning_details":[{"type":"reasoning.text","text":" no","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" y","reasoning_details":[{"type":"reasoning.text","text":" y","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"apping","reasoning_details":[{"type":"reasoning.text","text":"apping","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Interpreting user request \n- The user asked, \"Say hi in Portuguese,\" a casual and straightforward inquiry.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Interpreting user request \n- The user asked, \"Say hi in Portuguese,\" a casual and straightforward inquiry.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"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-1758709873-d9JQxfHZPyg0xGWdiiqi","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709873,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":213,"completion_tokens":203,"total_tokens":416,"cost":0.00031254,"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.0003045},"completion_tokens_details":{"reasoning_tokens":201,"image_tokens":0}}}
+
+ data: [DONE]
+
headers:
Content-Type:
- text/event-stream
status: 200 OK
code: 200
- duration: 492.433584ms
+ duration: 315.323541ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1_xai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1_xai.yaml
deleted file mode 100644
index d63b75780aae3422785c37ccd063e4929087b1e6..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_grok-code-fast-1_xai.yaml
+++ /dev/null
@@ -1,432 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 278
- 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},"provider":{"only":["xai"]},"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.text","text":" simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" request","reasoning_details":[{"type":"reasoning.text","text":" request","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation","reasoning_details":[{"type":"reasoning.text","text":" translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greeting","reasoning_details":[{"type":"reasoning.text","text":" greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Handling User Request \n- The user asked to \"Say hi in Portuguese,\" which is a straightforward request for a greeting translation.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Handling User Request \n- The user asked to \"Say hi in Portuguese,\" which is a straightforward request for a greeting translation.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- Found \"Olá\" as a common way to say \"hi\" in Portuguese, fitting the user's simple inquiry.","reasoning_details":[{"type":"reasoning.text","text":" \n- Found \"Olá\" as a common way to say \"hi\" in Portuguese, fitting the user's simple inquiry.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":".)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"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-1758703067-wWy9nid56qZUvNLDn6Yd","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703067,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":213,"completion_tokens":197,"total_tokens":410,"cost":0.00030354,"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.0002955},"completion_tokens_details":{"reasoning_tokens":187,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 400.862041ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2.yaml
index 22cc77f3190f1577954ff809893b6737e8c147ca..c91e62d77add0614bc6dc1eeefd53621b4f49c42 100644
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2.yaml
@@ -24,17 +24,15 @@ interactions:
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-1758709845-YTvBVQ31R68jhUh2sxzT","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709845,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
- 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-1758709845-YTvBVQ31R68jhUh2sxzT","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709845,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
- 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-1758709845-YTvBVQ31R68jhUh2sxzT","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709845,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
- 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-1758709845-YTvBVQ31R68jhUh2sxzT","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709845,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
- 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: {"id":"gen-1758709845-YTvBVQ31R68jhUh2sxzT","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709845,"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.0000195,"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.0000075},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -43,4 +41,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 718.457792ms
+ duration: 1.431936s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_baseten.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_baseten.yaml
deleted file mode 100644
index 7e26651ef3fa4747ee5224bcd3a9981c4299340d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_baseten.yaml
+++ /dev/null
@@ -1,44 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 284
- 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},"provider":{"only":["baseten"]},"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-1758698596-JjdEleUtlhRE1WTVCGCR","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698596,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698596-JjdEleUtlhRE1WTVCGCR","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698596,"choices":[{"index":0,"delta":{"role":"assistant","content":"á"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698596-JjdEleUtlhRE1WTVCGCR","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698596,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698596-JjdEleUtlhRE1WTVCGCR","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698596,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698596-JjdEleUtlhRE1WTVCGCR","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698596,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":21,"completion_tokens":4,"total_tokens":25,"cost":0.0000226,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000126,"upstream_inference_completions_cost":0.00001},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 437.590417ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_chutes.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_chutes.yaml
deleted file mode 100644
index 450b0da2cf20c49767aa011fb74a1e26ae9cfe83..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_chutes.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 283
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"stream_options":{"include_usage":true},"usage":{"include":true},"provider":{"only":["chutes"]},"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-1758698427-GyoKXgNMahf1cadHvokc","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698427,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698427-GyoKXgNMahf1cadHvokc","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698427,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698427-GyoKXgNMahf1cadHvokc","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698427,"choices":[{"index":0,"delta":{"role":"assistant","content":"á"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698427-GyoKXgNMahf1cadHvokc","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698427,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698427-GyoKXgNMahf1cadHvokc","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698427,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698427-GyoKXgNMahf1cadHvokc","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698427,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":21,"completion_tokens":4,"total_tokens":25,"cost":0.00001406,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00000798,"upstream_inference_completions_cost":0.00000608},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.303000125s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_deepinfra.yaml
deleted file mode 100644
index 34f8bba1bfd7f6cd3b1c372bb2bb5d4911fe8a79..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_deepinfra.yaml
+++ /dev/null
@@ -1,44 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 286
- 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},"provider":{"only":["deepinfra"]},"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-1758698443-7cmLYNFew8b7uTRdo1H0","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698443,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698443-7cmLYNFew8b7uTRdo1H0","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698443,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698443-7cmLYNFew8b7uTRdo1H0","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698443,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698443-7cmLYNFew8b7uTRdo1H0","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698443,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698443-7cmLYNFew8b7uTRdo1H0","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698443,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":20,"completion_tokens":2,"total_tokens":22,"cost":0.000014,"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.000004},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 689.935416ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_fireworks.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_fireworks.yaml
deleted file mode 100644
index e946ddc8c7eda88791c9310b0a996d9eb2df7777..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_fireworks.yaml
+++ /dev/null
@@ -1,42 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 286
- 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},"provider":{"only":["fireworks"]},"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-1758698521-p9dwsTBOwxohY2SbHeeB","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698521,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698521-p9dwsTBOwxohY2SbHeeB","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698521,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698521-p9dwsTBOwxohY2SbHeeB","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698521,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698521-p9dwsTBOwxohY2SbHeeB","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698521,"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.0000195,"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.0000075},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 767.782833ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_groq.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_groq.yaml
deleted file mode 100644
index b6d83731854f37507a69744f7ad95f57aa4e1978..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_groq.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 281
- 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},"provider":{"only":["groq"]},"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-1758703127-HhgBCe5YfgeAGz9bvnU7","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703127,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703127-HhgBCe5YfgeAGz9bvnU7","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703127,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703127-HhgBCe5YfgeAGz9bvnU7","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703127,"choices":[{"index":0,"delta":{"role":"assistant","content":"á"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703127-HhgBCe5YfgeAGz9bvnU7","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703127,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703127-HhgBCe5YfgeAGz9bvnU7","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703127,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703127-HhgBCe5YfgeAGz9bvnU7","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703127,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":20,"completion_tokens":4,"total_tokens":24,"cost":0.000032,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002,"upstream_inference_completions_cost":0.000012},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 211.675292ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_moonshotai.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_moonshotai.yaml
deleted file mode 100644
index 947f2ae2e47e6fbb31bed816fb43b29f0f09a799..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_moonshotai.yaml
+++ /dev/null
@@ -1,44 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 287
- 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},"provider":{"only":["moonshotai"]},"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-1758698546-zdV0SvhsGMgF8Ds4pu9i","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698546,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698546-zdV0SvhsGMgF8Ds4pu9i","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698546,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698546-zdV0SvhsGMgF8Ds4pu9i","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698546,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698546-zdV0SvhsGMgF8Ds4pu9i","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698546,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698546-zdV0SvhsGMgF8Ds4pu9i","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698546,"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.000039,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000024,"upstream_inference_completions_cost":0.000015},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 850.075708ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_moonshotai/turbo.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_moonshotai/turbo.yaml
deleted file mode 100644
index 2fdd35e905f24b1956e71ffb385c473f4c2c470f..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_moonshotai/turbo.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 293
- 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},"provider":{"only":["moonshotai/turbo"]},"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-1758698617-fjz9AQQ0KMkikJ4wwSaN","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698617,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698617-fjz9AQQ0KMkikJ4wwSaN","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698617,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698617-fjz9AQQ0KMkikJ4wwSaN","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698617,"choices":[{"index":0,"delta":{"role":"assistant","content":"á"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698617-fjz9AQQ0KMkikJ4wwSaN","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698617,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698617-fjz9AQQ0KMkikJ4wwSaN","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698617,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698617-fjz9AQQ0KMkikJ4wwSaN","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698617,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":20,"completion_tokens":4,"total_tokens":24,"cost":0.000044,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000024,"upstream_inference_completions_cost":0.00002},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 678.386041ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_novita.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_novita.yaml
deleted file mode 100644
index ad0e10efdea589743dee52ded0237ee15d16e8f3..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_novita.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 283
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"stream_options":{"include_usage":true},"provider":{"only":["novita"]},"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-1758698568-tDDRYhg82Z5qu5OL8vPp","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698568,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698568-tDDRYhg82Z5qu5OL8vPp","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698568,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698568-tDDRYhg82Z5qu5OL8vPp","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698568,"choices":[{"index":0,"delta":{"role":"assistant","content":"á"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698568-tDDRYhg82Z5qu5OL8vPp","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698568,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698568-tDDRYhg82Z5qu5OL8vPp","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698568,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698568-tDDRYhg82Z5qu5OL8vPp","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698568,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"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}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.429727375s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_siliconflow.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_siliconflow.yaml
deleted file mode 100644
index 75a183efca0878469d782aa76430d8a2cf5947b6..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_siliconflow.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 288
- 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},"provider":{"only":["siliconflow"]},"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-1758698457-Jg6hiwtK83qi1JrQnSyI","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698457,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698457-Jg6hiwtK83qi1JrQnSyI","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698457,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698457-Jg6hiwtK83qi1JrQnSyI","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698457,"choices":[{"index":0,"delta":{"role":"assistant","content":"á"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698457-Jg6hiwtK83qi1JrQnSyI","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698457,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698457-Jg6hiwtK83qi1JrQnSyI","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698457,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758698457-Jg6hiwtK83qi1JrQnSyI","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698457,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":21,"completion_tokens":3,"total_tokens":24,"cost":0.00001905,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00001218,"upstream_inference_completions_cost":0.00000687},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.305102959s
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_together.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_together.yaml
deleted file mode 100644
index bfe5fcb99c27e39b95f583db036a6aee9e50a716..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_together.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 285
- 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},"provider":{"only":["together"]},"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-1758698604-QhK0WrMt9vKBmmPjSEXh","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698604,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698604-QhK0WrMt9vKBmmPjSEXh","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698604,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698604-QhK0WrMt9vKBmmPjSEXh","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698604,"choices":[{"index":0,"delta":{"role":"assistant","content":"á"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698604-QhK0WrMt9vKBmmPjSEXh","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698604,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698604-QhK0WrMt9vKBmmPjSEXh","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698604,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698604-QhK0WrMt9vKBmmPjSEXh","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698604,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":21,"completion_tokens":4,"total_tokens":25,"cost":0.000033,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000021,"upstream_inference_completions_cost":0.000012},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 905.389792ms
diff --git a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_wandb.yaml b/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_wandb.yaml
deleted file mode 100644
index 20af3d001d8372270b054e08d4c87b32b864c1a3..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/simple_streaming_kimi-k2_wandb.yaml
+++ /dev/null
@@ -1,73 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 282
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"stream_options":{"include_usage":true},"provider":{"only":["wandb"]},"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: '{"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: 641.195667ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 282
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-0905","max_tokens":4000,"stream_options":{"include_usage":true},"provider":{"only":["wandb"]},"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-1758698629-5CNlN3eN3r4JHgnIsxJp","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698629,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698629-5CNlN3eN3r4JHgnIsxJp","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698629,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698629-5CNlN3eN3r4JHgnIsxJp","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698629,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698629-5CNlN3eN3r4JHgnIsxJp","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698629,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698629-5CNlN3eN3r4JHgnIsxJp","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698629,"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.000039,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000027,"upstream_inference_completions_cost":0.000012},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 523.797417ms
diff --git a/providertests/testdata/TestOpenRouterCommon/thinking-glm-4.5.yaml b/providertests/testdata/TestOpenRouterCommon/thinking-glm-4.5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..e0f83f863cdb00ee965837adc865d98f56b566fe
--- /dev/null
+++ b/providertests/testdata/TestOpenRouterCommon/thinking-glm-4.5.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":"z-ai/glm-4.5","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"}],"reasoning":{"effort":"medium"},"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-1758710084-rKyTKqwSdfgnfFQQurSG\",\"provider\":\"Z.AI\",\"model\":\"z-ai/glm-4.5\",\"object\":\"chat.completion\",\"created\":1758710084,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\\n\\nI'll check the weather in Florence, Italy for you.\\n\",\"refusal\":null,\"reasoning\":\"The user is asking for the weather in Florence, Italy. I have access to a weather function that can get weather information for a location. The function requires a \\\"location\\\" parameter, and the user has specified \\\"Florence, Italy\\\" as the location. I should use this exact location string when calling the function.\",\"tool_calls\":[{\"id\":\"call_28e19b3460e24e5680a77050\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence, Italy\\\"}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The user is asking for the weather in Florence, Italy. I have access to a weather function that can get weather information for a location. The function requires a \\\"location\\\" parameter, and the user has specified \\\"Florence, Italy\\\" as the location. I should use this exact location string when calling the function.\",\"format\":\"unknown\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":179,\"completion_tokens\":96,\"total_tokens\":275,\"cost\":0.00029753,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":43,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00008633,\"upstream_inference_completions_cost\":0.0002112},\"completion_tokens_details\":{\"reasoning_tokens\":79,\"image_tokens\":0}}}"
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 1.485824709s
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 816
+ host: ""
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"content":"\n\nI''ll check the weather in Florence, Italy for you.\n","tool_calls":[{"id":"call_28e19b3460e24e5680a77050","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_28e19b3460e24e5680a77050","role":"tool"}],"model":"z-ai/glm-4.5","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"}],"reasoning":{"effort":"medium"},"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-1758710088-zK8TJKAI72pV9hTXs71p\",\"provider\":\"Z.AI\",\"model\":\"z-ai/glm-4.5\",\"object\":\"chat.completion\",\"created\":1758710088,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\\n\\nThe weather in Florence, Italy is currently 40°C (104°F). That's quite hot - it's a very warm day there! Make sure to stay hydrated and seek shade if you're outdoors.\",\"refusal\":null,\"reasoning\":\"The weather function returned \\\"40 C\\\" for Florence, Italy. This appears to be a temperature reading of 40 degrees Celsius, which is quite hot. I should provide this information to the user in a clear and helpful way.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The weather function returned \\\"40 C\\\" for Florence, Italy. This appears to be a temperature reading of 40 degrees Celsius, which is quite hot. I should provide this information to the user in a clear and helpful way.\",\"format\":\"unknown\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":219,\"completion_tokens\":92,\"total_tokens\":311,\"cost\":0.00031273,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":43,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00011033,\"upstream_inference_completions_cost\":0.0002024},\"completion_tokens_details\":{\"reasoning_tokens\":54,\"image_tokens\":0}}}"
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 618.183292ms
diff --git a/providertests/testdata/TestOpenRouterCommon/thinking-gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/thinking-gpt-5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..82780cb91427856719f5324c4fca6f94e993edb4
--- /dev/null
+++ b/providertests/testdata/TestOpenRouterCommon/thinking-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: 494
+ 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","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"}],"reasoning":{"effort":"medium"},"usage":{"include":true}}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.3.0
+ url: https://openrouter.ai/api/v1/chat/completions
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ uncompressed: true
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758710067-0XaYb8CAKeAGdjBnksDD\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758710067,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Fetching weather data**\\n\\nI need to get the weather information for Florence, Italy, as the user requested. I'll use the functions.weather tool and set the location to \\\"Florence, Italy.\\\" I see that there's a multi_tool_use.parallel option, but since I only need one tool here, I'll stick with functions.weather. Once I call it through the commentary channel, I'll retrieve the output. I just hope the data comes back correctly so I can present the weather accurately!\",\"tool_calls\":[{\"id\":\"call_hPeOSCUiY61l9U2MD4Nx8MW5\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Fetching weather data**\\n\\nI need to get the weather information for Florence, Italy, as the user requested. I'll use the functions.weather tool and set the location to \\\"Florence, Italy.\\\" I see that there's a multi_tool_use.parallel option, but since I only need one tool here, I'll stick with functions.weather. Once I call it through the commentary channel, I'll retrieve the output. I just hope the data comes back correctly so I can present the weather accurately!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo08k3O0e00zGtYNZAXav2t2ESbQlgnqjUcmuvXMNiGdkK2w_9Jc9Q9jDaoF343dKdkUm9KMK4BVyJMD-s1LDPXZj1O_1H2DTEJBOhdTlbSkWliV_OlifyVZ8DfET3vxZvNxO-Q_cUNpvn7nsjwjDRJluVFEftsQQy2SfOdPS8qcDBsIMrTpHLSrcL1T39R22YQWhFnCKkF9Z2SsKg6jCqsY4LKSnVIwZ8Gt2kknsnu2_SPfXs4HQlEoU-FTiwaOB1OEULrjSNNoFjZQkQM2k5P5VURUujhFvCeVatdcwIK8TJv4gvSHpGj-SMOYvp10UtEQziiVEnnYCuEJcWMD_krYzHlxgh6n8LlpSAvh3TEEc0iR7xfyu5IPFCNfzC8qE725N9o-i5DrgeUIMxL8_d2Ws5JUTH4_zFsv5p9PRzlN6Hvb0dWPWaJRKpbgs4USPPdLfSkjLA3qS2Heq6wuai7Ad_yhjFFaaFSJW94XHMIc7WWEEPtYx_ZGjzoaa17SfLBUc0oLWIb50TEJPzxMOiAqlIIQYLO9QO6vrB9oUHMZf6jviTYb_BizNt3GSS69Fbj2G94cLuDTVVaRpdFTaHrjvpCvpQch2x4Cg_QG1advr98R-gwY3S5JG8MFgxVD0KqBmq5QPsaJf1soYgRp6PUdAGSooBKutbuAxBIdmE4obanARYtvnCIjrGnM3wCuRTz2Uz88WXSBRkWDDqeqqhw8S_8-1QAbOFy7wU2t-ZZVIiz7Exy8i2FP9aG_9BzJXEWKqMl7uZb6PoJUuzv5pPSFf7ZLxN8mQJPSBGZXrhCs-E5OBIOBZZBRKGCFj5HxPqNuCq4HrhUjWmrdskiKjPktc8vgZOonyw8uMHNERxCxpCQoOYq70maEXRBAMKKnOw3LVediLpcAQWuSaeIRusd_SDYlh8RRgO1Y8mIrymbIpmX8euO_zUGVq_QO_1bCPZbCAiv_8ZLPd_hszETso549oSBETxST2VJP8-7bX4AFY03KJ1lqKM3ct4iyxGsauBPyLtrY92440gAh9bFgJuVdHLcyIBmF9LqeJSMuOne5j3c5D3jHVDz4OubPDJZyib2qgIeOoCvORdIq8qEIIpZiPMs_Y1XNUHIi9jbkLf5KYpiRA2YJjYpE7s6iaLeXt1Gqt7eZ-er6_KBc_xi3r0mGNn0fq2-WLn2CJamDfqWLRklyg3uC2LqUMvr-eFEVp98CFNkFo-MURXQzeP6AVaLU0c8Cz16hb_ZYUOXtheQnyOVxOCmxWqVjXdokcNR0_0SFaa7vEw4n-OpvcyZn2p_062Hj2On44-DANVWn3Fhh9TzlHay1zjkTLu3a-GUTqwsG4aLkE48S_Un8D3VQS78YwvSWMDO40I2oMWquUjQxs6nOKX2OPUv40CK4orzhvMhovb38bEGaF-qn4QsmMyRkNWnaNpwulEZT2sZqoY3PVEH17fnYay4fix_-wPFbETa-jxmKG3ia4gYqDZejIinHf6kbtnMy3JP6zvSLEEqsxlQTI6u5voxA-VvNbwygeXwq_dbj4cGfxQrNT3ro3eu4ubjFejFGPQHZPcenFo6sjvRMrjwV0N4T3jYOh0b_ehXVCZk0WsZ3sGzgab57jyxQ77xq1k5W7NJEzVeqEPlnCM9cvyCILzao152yF4vZhmnzgI\",\"id\":\"rs_68d3c93459b881938af0365b660395b90b0a8539b112155d\",\"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: 756.40825ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 746
+ 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_hPeOSCUiY61l9U2MD4Nx8MW5","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_hPeOSCUiY61l9U2MD4Nx8MW5","role":"tool"}],"model":"openai/gpt-5","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},"reasoning":{"effort":"medium"}}'
+ 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{\"id\":\"gen-1758710071-YRdc9q1f5SRugr0m3cGe\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758710071,\"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 details like forecast, humidity, or wind?\",\"refusal\":null,\"reasoning\":\"**Relaying weather information**\\n\\nI called the weather tool, and it returned \\\"40 C.\\\" That seems unusually high! Since my job is to relay the weather, I should only share the temperature. The user asked for the weather in Florence, Italy, so I can simply say, \\\"It's currently about 40°C in Florence, Italy.\\\" I might want to check in and ask if the user wants more details, but they didn't explicitly ask for them. I'll keep the formatting light.**Offering weather details**\\n\\nIf the user wants more details like the forecast, precipitation, wind, or an hourly breakdown, I'm happy to provide that! However, I need to be cautious about real-time disclaimers since the tool is our ground truth. It returned just \\\"40 C\\\" without a timestamp, so I'll assume it's current. It could be helpful to include a Fahrenheit conversion, though it might add unnecessary verbosity. I could say, \\\"It's around 40°C (104°F). If you'd like the forecast or humidity/wind, just let me know!\\\"\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Relaying weather information**\\n\\nI called the weather tool, and it returned \\\"40 C.\\\" That seems unusually high! Since my job is to relay the weather, I should only share the temperature. The user asked for the weather in Florence, Italy, so I can simply say, \\\"It's currently about 40°C in Florence, Italy.\\\" I might want to check in and ask if the user wants more details, but they didn't explicitly ask for them. I'll keep the formatting light.**Offering weather details**\\n\\nIf the user wants more details like the forecast, precipitation, wind, or an hourly breakdown, I'm happy to provide that! However, I need to be cautious about real-time disclaimers since the tool is our ground truth. It returned just \\\"40 C\\\" without a timestamp, so I'll assume it's current. It could be helpful to include a Fahrenheit conversion, though it might add unnecessary verbosity. I could say, \\\"It's around 40°C (104°F). If you'd like the forecast or humidity/wind, just let me know!\\\"\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo08lDDT_0SD4rB6oixEWH_r6zDHE_RlvZZCzAuvgmCBqVW-l5bxHiHRVlD9hBPNNPAGGQWlj_NXMLv2RNOlBo_pz1QmYVozDLLcw1CTSQzhHclG2rLwN3d7HzcO_CXRtArTL07jXUoybgpGmrpqQ0C552Dv8lgrSi3z4qdOXGg7gCA8ihXz7HusVh-7cfWTIJrysOaBHkAv8jDOvWhECTFZPKl8Y3tj2VGcqqqiE7ePLCiJfFZ2Ykm1P8z8vN--owy-LHwTyFaTeokkVqhU3j1s2c3UqFBjralVpr0tOyXs06UlPvJEjdaXZBV8LF7_CgZr9md1on2z1aO9cgYSJV3jLbwCIet8Ij_iLweu7JEFpMC_-Vp5y8cXVEyQsEShE9gj-ypD0SNIfr7L2pmbUeY3PMej83sm5Indp3cbRir07ENkhIkOz7J2oN6uo3EWKcc_xXb-qJTAIixe5rDcbyh8ic1hetmWTqKWzOXrTz0xBalNaIH4-QzqdVR0RiG3gVa9MNDTRhGdvb5P5kmL96-o_ldpDnrDvfjVu7ZtmlRw5KkjtuJw0Fl3G4yNVQJi71wdil9I-XKFnJrEWpaG3MT8BiS9tmUDSstWhDGEhIWyP8NuCnHFBKS-NuzUa3ZQacGXhfMEmWdRYuVllwFuOxPxqjOwFfbc17RhX48n9d8qEwyUMIwUdJumXUOEHrB8fTdb3np9yw-A6Df4M9S3hprqTPB0-HGVtcAbWemJgIezenKzV7xtxRm-nD_5Ofz4KLSisHXV7gsJCed3FMpgUdd2OkzsLALaWDRZKvsk1jOh2soLaBjKWt0CNJ0gpHo_j7sLyvgqpIiWNiC_aR2In1DC3rFuZAkpOpqQ6xuh2WWEDWsZL2NR4eVTASZqQLc81lOyjQbrcbZqv--UZTioWytssjLvS7LGFgaXvPwflRnyx1XxtN5yYy1skU64LwZENwvmqxRrTUsG7Mrj3d6n81CSVMWdiREXm4TgudfC_wjJeEt3Iq8HO9qplAvk0hRZVelsYjr72IRbdXJJJuRfGt6Vs8LsxMu0xs9RqF9O0kLpuVZdnixR2fzTSeeHO0Y1-Sz2Cx72ti5D86IyU2XuHtUVzKqL8Wr3lMk-ta_17sMwGtP5iU0OIRK_m7My-R372b-qQtk9ingBGzlwNfBiVsOWqv5w2IRQG_VTx4rwseqbtNU-GZFTXAs9U6J03m9YuXHs-7W8whITzSZ1T8oiLLQcQ9ow9ve0SPcZLrgpoBK6JmiRQ2_fI1mD_boWKIKpX7L4eJKrfvDAStM9Irfgixac12Qcc7gfdp76mCAP4YSYoZJ3nNbxT2dogrGxsLVGRAW_qFZOcUAZT5eFS3q1YBJMXfBpTJb38SGMmtOsdD9Sa-O-9D9fC1fS2ijc1ip_MxWM5pctvEtgUOUPzJW9R_6ewpurLsrmq7dYTYzKSUknj5N1gCg0g0C6Gl6QByMXpKBEGu4M9VCRLpy4ybCb8Qz-WZIRdU0lQBxwl1lbzoSytT5T51IPoJrDYCMsiJgKZGXi0DHFj2bTJXfGDb4ER_U8jGv3gfXuxkhFQEECzGsSQrTyLH2i-j87ETrm9XLH0bs12u_EVq-o8LLdq3TWawKdpaol43civ1EB5eDqjBHdgl6IG3e5xPUEhb8FyTE7sgfbf8FClQjBmoItdZ8DYne1hWM10Ol1hivAaWjz5LZSPs2tA2j2dlwGnC1uI07Bl0CcE-wUNfR8Scr8OJeJgyBDJ0Dt0wZwhU0j7RpKTO8D9YN3OqdXSBqAeW4A3mRV1vSlp48IhcS4Ur4Vyj9x6w6qKiAEL2fjFCe8XUE3fJGpcLDzMMigFLEyUbVBXs9YD_9ZXXhrS1dFRuLEjtYd95sftDFx5r09Nhk5iyH7jTQrYqytdOzHkS9cGLVbBFCeNlQMAqGRG6OI4FQy13NDSqhvxeSRp1wo_TtrdcNHqx8tSCrtpr3owUsLbO2uj8vCRAOL2nAxI9qDEtA-0_jdMJQnr0NBtSsAcHUZHNkwuSGH7-VV14k4hdiJyl1Yt86Iu3WQAcQzSbs-oOYfhGQmHINKUbY-auDZvH_dLVF3unFF6PSZnWQs2gfHp2KQ64F2sm9ve-5N7vlBue3IzaZOJkbprtC9WPDn9M0kqSBL__wvGZB3-86b0NwiGoUBP0v3fMx8U6JpFSj_dtKndvhbKf8oEeCDYtw1e5qaTWB3osgS6UtL7aJoBTynH-y6WSWWwhGYaR2Q7KC6n0amaxLPhZipPDHLA8pPCTKK4wgRBxqZe8UMmmHUub31VqHE_Xf5MnvRq0zSBq4fOlb79FkAqVfgWfj8lUgCi5WMl8yR-jhUqhmCApA7V3rkblrK1gDZOuFLEsGvgTDKMP8JoAKPhn-9iNcMtSlPuLWVferyXI4_PevsXqpHSh46OTneOf8qJ77FdR7Ieq87w26y1xlBJJtTaCgBrr7p0dnawL9GIPfDqXPWEzM4fDQtHBxi8fEzhdC3qJIcW4POkTekGvQucejb_NR8Px3mFDlrMO_9osbUBhv_NH7ajOfmgXfwdc0QakG-oyC7uNU_8Fa3hj0vwpV-PhJyq_a6lMVNonEVOi9VbUX0M=\",\"id\":\"rs_68d3c9390afc81908a6040e78c8d0276\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":92,\"completion_tokens\":288,\"total_tokens\":380,\"cost\":0.0014975,\"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.00144},\"completion_tokens_details\":{\"reasoning_tokens\":256,\"image_tokens\":0}}}"
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 755.368166ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4.yaml
index f0effc254a3454cecd45e7c8609bb6536e8efe57..2c67e0efbb857e4cb28e08bd7580c08fd38894ae 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4.yaml
@@ -24,21 +24,21 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709898-muCUC6YBOkQsYgZQ3XQy\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758709898,\"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\":[{\"id\":\"toolu_vrtx_01DzUZihmDKdu91Wy7AwaZPg\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\"}}]}}],\"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}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 2.217559833s
+ duration: 1.978359166s
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 839
+ content_length: 830
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}}'
+ 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_01DzUZihmDKdu91Wy7AwaZPg","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_01DzUZihmDKdu91Wy7AwaZPg","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709901-0FiMQa3AafYPMaVqo6e2\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758709901,\"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 (104°F). That's quite hot! It would be a good idea to stay hydrated and seek shade or air conditioning if you're planning to be outdoors.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":476,\"completion_tokens\":50,\"total_tokens\":526,\"cost\":0.002178,\"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.00075},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 2.4004075s
+ duration: 2.289575042s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_amazon-bedrock.yaml b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_amazon-bedrock.yaml
deleted file mode 100644
index e76f2803681ef24e70ebb12fab3078669bb9d0d9..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_amazon-bedrock.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 531
- 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"}],"provider":{"only":["amazon-bedrock"]},"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-1758703517-FBbA9Qwjylq5Vh2ttqNS\",\"provider\":\"Amazon Bedrock\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703518,\"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_bdrk_01133QJCcK6yWJt13uwf1mGw\",\"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: 1.552577875s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 878
- 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_bdrk_01133QJCcK6yWJt13uwf1mGw","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_bdrk_01133QJCcK6yWJt13uwf1mGw","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"}],"provider":{"only":["amazon-bedrock"]},"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{\"id\":\"gen-1758703519-xZcWXhTZkzEEsnH8V01c\",\"provider\":\"Amazon Bedrock\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703520,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The current weather in Florence, Italy shows a temperature of 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 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.387195833s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_anthropic.yaml b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_anthropic.yaml
deleted file mode 100644
index a5b8bbaaa9f5de54ba036aacad35aa9760c85398..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_anthropic.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 526
- 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"}],"provider":{"only":["anthropic"]},"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-1758703460-rTzOvm2FJz6sthbubHKf\",\"provider\":\"Anthropic\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703460,\"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_01VpXHw245gvhY576DNBm4dA\",\"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: 3.289189458s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 863
- 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_01VpXHw245gvhY576DNBm4dA","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_01VpXHw245gvhY576DNBm4dA","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"}],"provider":{"only":["anthropic"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758703464-xJ6ex0SApRHg2BL0FAFd\",\"provider\":\"Anthropic\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703464,\"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 during the hottest parts of the day.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":477,\"completion_tokens\":54,\"total_tokens\":531,\"cost\":0.002241,\"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.00081},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 3.285610791s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex.yaml
deleted file mode 100644
index 111f370ef49cfd6327701c35c587c8b347687004..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 530
- 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},"provider":{"only":["google-vertex"]}}'
- 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-1758703413-ERxe0D2fb24VfJZfTQbm\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703414,\"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\":[{\"id\":\"toolu_vrtx_01848AGdQVwuJai5pGHs1qLc\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence, Italy\\\"}\"}}]}}],\"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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 2.082400292s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 869
- 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_01848AGdQVwuJai5pGHs1qLc","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_01848AGdQVwuJai5pGHs1qLc","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"}],"provider":{"only":["google-vertex"]},"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-1758703416-TQYUZitL5pOORy43S1V8\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703417,\"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! It's a very warm day in Florence.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":476,\"completion_tokens\":34,\"total_tokens\":510,\"cost\":0.001938,\"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.00051},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 2.168670042s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex/europe.yaml b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex/europe.yaml
deleted file mode 100644
index 4207f2b7f68437fe89cb2fe08a83a4cbc25ef14a..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex/europe.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 537
- 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"}],"provider":{"only":["google-vertex/europe"]},"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-1758703494-ENZenpXpStP7Gc4QpQtn\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703494,\"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\":[{\"id\":\"toolu_vrtx_01BcsiXWv3JrF1WBdpDCKLVg\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\"}}]}}],\"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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.529066208s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 875
- 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_01BcsiXWv3JrF1WBdpDCKLVg","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_01BcsiXWv3JrF1WBdpDCKLVg","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"}],"provider":{"only":["google-vertex/europe"]},"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-1758703496-6VGPeVOMNdOl1x686mFY\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703496,\"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 (104°F). That's quite hot! It would be a good idea to stay hydrated and seek shade or air conditioning if you're planning to be outdoors.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":476,\"completion_tokens\":50,\"total_tokens\":526,\"cost\":0.002178,\"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.00075},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.46968225s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex/global.yaml
deleted file mode 100644
index 4ab040b31cf8f1cce14dc0c5614984fc4d3c76c0..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_claude-sonnet-4_google-vertex/global.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 537
- 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"}],"provider":{"only":["google-vertex/global"]},"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-1758703437-Uqs9OLONHyxiiapyhEWo\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703438,\"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\":[{\"id\":\"toolu_vrtx_01RU7jk5NKWkLSbVvZ44b62G\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\"}}]}}],\"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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.028780958s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 875
- 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_01RU7jk5NKWkLSbVvZ44b62G","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_01RU7jk5NKWkLSbVvZ44b62G","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},"provider":{"only":["google-vertex/global"]}}'
- 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-1758703439-5thSpZgRqsbt3xs7flBD\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1758703439,\"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 (104°F). That's quite hot! Make sure to stay hydrated and seek shade if you're planning to be outdoors.\",\"refusal\":null,\"reasoning\":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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.341619958s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free.yaml b/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free.yaml
index 68601a9567300dd521e64e519880f97e6a6a00f6..4636c246c599fc0735664406c3072baa0d1b8c81 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free.yaml
@@ -24,21 +24,21 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709955-kgF0ecZXChMvtods7Isr\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758709955,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll check the weather in Florence, Italy for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_f90e\",\"function\":{\"arguments\":\"{\\\"location\\\": \\\"Florence\\\"}\",\"name\":\"weather\"},\"type\":\"function\"}]}}],\"usage\":{\"prompt_tokens\":160,\"completion_tokens\":27,\"total_tokens\":187,\"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
+ duration: 933.800375ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 779
+ content_length: 768
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}}'
+ 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":"call_f90e","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_f90e","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709958-T4GNXhNHpYetsYNY7qM8\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758709958,\"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. That's quite hot! It appears to be a very warm day there. You might want to stay hydrated and seek shade if you're in the area.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":192,\"completion_tokens\":45,\"total_tokens\":237,\"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
+ duration: 850.046791ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free_deepinfra.yaml
deleted file mode 100644
index 3bc4346dad1efffea85891f1474bd093d43b0c8b..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_deepseek-chat-v3.1-free_deepinfra.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 533
- 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"}],"provider":{"only":["deepinfra"]},"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-1758704088-1bNZFuDisDy5tA6bqBIQ\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758704089,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll check the weather in Florence, Italy for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_9d1c\",\"function\":{\"arguments\":\"{\\\"location\\\": \\\"Florence\\\"}\",\"name\":\"weather\"},\"type\":\"function\"}]}}],\"usage\":{\"prompt_tokens\":160,\"completion_tokens\":27,\"total_tokens\":187,\"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: 525.249792ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 802
- 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":"call_9d1c","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_9d1c","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"}],"provider":{"only":["deepinfra"]},"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-1758704091-MIUsSJinfOiG9FUYy3xe\",\"provider\":\"DeepInfra\",\"model\":\"deepseek/deepseek-chat-v3.1:free\",\"object\":\"chat.completion\",\"created\":1758704091,\"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! If you're planning to visit, make sure to stay hydrated and seek shade during the hottest parts of the day.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":192,\"completion_tokens\":46,\"total_tokens\":238,\"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: 722.789584ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash.yaml
index 6a9fb125929e4843b29d8bfde6965b1cc5508db3..22294424a2fd1e4942d5a7f19a95f6db758054c9 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n{\"id\":\"gen-1758709944-OG8cRsACpdpBhHyzEShd\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758709944,\"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_qYtUDrrOMZFjCd9442rx\",\"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
+ duration: 720.3555ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_qYtUDrrOMZFjCd9442rx","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_qYtUDrrOMZFjCd9442rx","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n{\"id\":\"gen-1758709945-yBPPVw9m9Mi7Rx0xU6Wc\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758709945,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"It is 40 C in Florence, Italy.\\n\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":56,\"completion_tokens\":12,\"total_tokens\":68,\"cost\":0.0000104,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000056,\"upstream_inference_completions_cost\":0.0000048},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 612.544ms
+ duration: 397.92925ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash_google-ai-studio.yaml
deleted file mode 100644
index d6dec0093d60a871a0f619e8fe0f1751d11d9ee2..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 535
- 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"}],"provider":{"only":["google-ai-studio"]},"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-1758703929-eTRziOOBgqacZppoqJWF\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703929,\"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_ybikNXXUG7fijRORpBnF\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence\\\"}\"}}]}}],\"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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 673.25875ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 792
- 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_ybikNXXUG7fijRORpBnF","function":{"arguments":"{\"location\":\"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_ybikNXXUG7fijRORpBnF","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"}],"provider":{"only":["google-ai-studio"]},"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-1758703930-c9DOyE8qRm9vet9KAJ8L\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703930,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"It is 40 C in Florence.\\n\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":52,\"completion_tokens\":10,\"total_tokens\":62,\"cost\":0.0000092,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000052,\"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: 660.390958ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash_google-vertex.yaml
deleted file mode 100644
index 97078db832da5839c4f74b84a2d8ff52f3a21f55..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.0-flash_google-vertex.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 532
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703938-shnrHjNsW5ms8GbSxsNI\",\"provider\":\"Google\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703938,\"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_rt8zo8rCm5SqDRklpJa9\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence,Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":28,\"completion_tokens\":5,\"total_tokens\":33,\"cost\":0.0000072,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000042,\"upstream_inference_completions_cost\":0.000003},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.584211583s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 795
- 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_rt8zo8rCm5SqDRklpJa9","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_rt8zo8rCm5SqDRklpJa9","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"}],"provider":{"only":["google-vertex"]},"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-1758703940-IAESUZpd9prOKc5TxS7t\",\"provider\":\"Google\",\"model\":\"google/gemini-2.0-flash-001\",\"object\":\"chat.completion\",\"created\":1758703940,\"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\":56,\"completion_tokens\":13,\"total_tokens\":69,\"cost\":0.0000162,\"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.0000078},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 720.270583ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash.yaml
index fe49fa62739b22332866288715c7a28b3376ca7f..2807e0e5efc4fbfc562dc3c15756ecb773bb481c 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n{\"id\":\"gen-1758709937-UZu6RUh43VLohHCfyHr1\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758709937,\"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_Fzw6GjsbfJRg6Y1DVFiH\",\"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
+ duration: 918.358875ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ 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_Fzw6GjsbfJRg6Y1DVFiH","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_Fzw6GjsbfJRg6Y1DVFiH","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: '{"id":"gen-1758709938-Rbi8lpF5TrLKOO4wrOcC","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion","created":1758709938,"choices":[{"logprobs":null,"finish_reason":"stop","native_finish_reason":"STOP","index":0,"message":{"role":"assistant","content":"The weather in Florence, Italy is 40 C.","refusal":null,"reasoning":null}}],"usage":{"prompt_tokens":57,"completion_tokens":12,"total_tokens":69,"cost":0.0000471,"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.00003},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}'
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 729.492458ms
+ duration: 448.051334ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-ai-studio.yaml
deleted file mode 100644
index 242faca3bf78f83df714d74d80999d230a793ea5..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 531
- 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"}],"provider":{"only":["google-ai-studio"]},"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-1758703827-8iPEL08rS75Xlps7arMo\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703827,\"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_mpzi5GviR5lYoYvO02M0\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence,Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":54,\"completion_tokens\":15,\"total_tokens\":69,\"cost\":0.0000537,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000162,\"upstream_inference_completions_cost\":0.0000375},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.122369125s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 794
- 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_mpzi5GviR5lYoYvO02M0","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_mpzi5GviR5lYoYvO02M0","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"}],"provider":{"only":["google-ai-studio"]},"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-1758703828-yII3njTgMfNUaDucsAcR\",\"provider\":\"Google AI Studio\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703828,\"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\":105,\"completion_tokens\":13,\"total_tokens\":118,\"cost\":0.000064,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000315,\"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: 605.860292ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-vertex.yaml
deleted file mode 100644
index e9637e05b57b76356c56c62d4df751284a697ae8..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-vertex.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 528
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703835-QRbo6AN5Yrc7ExyLsGsB\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703835,\"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_pisIeGWIpMquWuIb45fl\",\"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: 693.128792ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 791
- 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_pisIeGWIpMquWuIb45fl","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_pisIeGWIpMquWuIb45fl","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},"provider":{"only":["google-vertex"]}}'
- 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-1758703835-pp0IbEfyj6DJvS6UPeyu\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703835,\"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\":54,\"completion_tokens\":13,\"total_tokens\":67,\"cost\":0.0000487,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000162,\"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: 690.716458ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-vertex/global.yaml
deleted file mode 100644
index 77454e675cb550379b8207f9ce12f21eb84fe03d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_gemini-2.5-flash_google-vertex/global.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 535
- 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"}],"provider":{"only":["google-vertex/global"]},"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-1758703820-xruWRSvLbjyR9nsK4749\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703820,\"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_16iLM524ZeDpIDTOj6O1\",\"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: 730.854417ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 798
- 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_16iLM524ZeDpIDTOj6O1","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_16iLM524ZeDpIDTOj6O1","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"}],"provider":{"only":["google-vertex/global"]},"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-1758703820-BJOErOhcAdaOFFVVeVEe\",\"provider\":\"Google\",\"model\":\"google/gemini-2.5-flash\",\"object\":\"chat.completion\",\"created\":1758703821,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"STOP\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"It's 40 degrees Celsius in Florence, Italy.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":58,\"completion_tokens\":13,\"total_tokens\":71,\"cost\":0.0000499,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000174,\"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: 613.167916ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_glm-4.5.yaml b/providertests/testdata/TestOpenRouterCommon/tool_glm-4.5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..58083817c4d94b8dc6dfdbc6562548646ef389b7
--- /dev/null
+++ b/providertests/testdata/TestOpenRouterCommon/tool_glm-4.5.yaml
@@ -0,0 +1,63 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 479
+ host: ""
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"z-ai/glm-4.5","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{\"id\":\"gen-1758710041-3m14QeaDftR1INdZc8i0\",\"provider\":\"SiliconFlow\",\"model\":\"z-ai/glm-4.5\",\"object\":\"chat.completion\",\"created\":1758710041,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\\nI'll get the weather information for Florence, Italy for you.\\n\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"01997b499643e3c17b65e7ff8c7594ef\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\"}}]}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":191,\"completion_tokens\":29,\"total_tokens\":220,\"cost\":0.0001535,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000955,\"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.901487375s
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 815
+ host: ""
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\nI''ll get the weather information for Florence, Italy for you.\n","tool_calls":[{"id":"01997b499643e3c17b65e7ff8c7594ef","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"01997b499643e3c17b65e7ff8c7594ef","role":"tool"}],"model":"z-ai/glm-4.5","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-1758710044-7EkwjGCPSkgieHqoT9Jj\",\"provider\":\"AtlasCloud\",\"model\":\"z-ai/glm-4.5\",\"object\":\"chat.completion\",\"created\":1758710044,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\\n\\nThe current weather in Florence, Italy is 40°C (104°F). That's quite hot!\",\"refusal\":null,\"reasoning\":\"The weather function returned \\\"40 C\\\" for Florence, Italy. This indicates that the current temperature in Florence is 40 degrees Celsius. I should provide this information to the user in a clear and helpful way.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The weather function returned \\\"40 C\\\" for Florence, Italy. This indicates that the current temperature in Florence is 40 degrees Celsius. I should provide this information to the user in a clear and helpful way.\",\"format\":\"unknown\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":228,\"completion_tokens\":67,\"total_tokens\":295,\"cost\":0.0002842,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001368,\"upstream_inference_completions_cost\":0.0001474},\"completion_tokens_details\":{\"reasoning_tokens\":53,\"image_tokens\":0}}}"
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 1.204569125s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5.yaml
index ce09129b27fc44eea5a4c9c162793e8fff55c016..d5d3da4832be90ed6d9e1b4406cd717873d39221 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ 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-1758709991-guGOfnMFdatrP8vo6qIl\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758709991,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Fetching weather info**\\n\\nI need to provide the current weather info. I have a tool that takes a location string, so I’ll use it for Florence, Italy. Since the user didn’t specify a date or time, I’ll assume they want the current weather. There's no need for multi-tool use here since I only need one tool. I’ll just call the weather function, and once I get a result, I’ll present it to the user. Let's go ahead and call the function!\",\"tool_calls\":[{\"id\":\"call_6sdDb5nHKbbMDdHN5xmcm7ri\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Fetching weather info**\\n\\nI need to provide the current weather info. I have a tool that takes a location string, so I’ll use it for Florence, Italy. Since the user didn’t specify a date or time, I’ll assume they want the current weather. There's no need for multi-tool use here since I only need one tool. I’ll just call the weather function, and once I get a result, I’ll present it to the user. Let's go ahead and call the function!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo08jsofIlVMHndIFSMEln17C_FIqCrfkOSzH4LyFoIBXI_O-BOYybV9W7ARpPo16RLOA2iM619vADOvKeTnsG71voyvCDKMLrgvJyKyQnKMYGfNBR515QSQO-na83jKHDykKmnbakCoffFX8SeyCah7fhpfh39UOSNo7BwjroBFRfUhdbRwVjtxwzWemRNdzDH7i_yosCEV6v8pNoYzonvBb_9s0nWJWu1YHcaed3Jz3rf24PG1jFLqOloVilJHVV6q8lJmuAxpq_V8rk_zu1GpE_tbMCvMHI_GjLuaLaMHM1s737LrcOUcgH_nGgQ9OvPIaZY4cwdNc-7nFuedxJH7oPF085tGZHKimu_bNMlw4arfnqkXwcIlvD4nEBnexRo4XYG0SqoRA8ZCZGNpWltuhjb3RIBspPL9ZCfRTJW1hVbbLKuRY8hgDG0zZx1RXsPNz2u17ppyz1Ro68vV1DvfOsUTA0K3Do80UVyvF-aV5MSfZVs92rJ4cEjm2IEoRA7muyw0LWilLGN8JVMGnPPxuDerrZwzzSa8NGtRhfdeIojFd7Ku-Phwqn3WT8M-gmUiivckQJftblb_Msyf3iiiN4_xs2mlE8Wui0kFupB-_BW0Q1nSPHOtY4pkLIhvovfGPmNzoU3dvqBeXgs0BsT_1JxXlTiMuo-y2BzpnrfWrbda0D-0gYzFws7gaGegze12cL1-l0HsGSzmQkUVeTEp3jTL9fyZX9HPs4Eh7JInYh6C7pLfqgqAWwQfUzjlG9LGNyrOpAjsoedViG7XYiQ_LPbqzjVm87vH5voku_RLd4f-dpQfbF1olIhNsJ7-K62mF8W9XYY0NGA4kGuCMd3iX2zSJK_JvcqpEpqlsCwdC38i1CakT1WelQuopeoNFq0tRGoz6oywuq4VPR9nmRtYofQ0UGTB4D9oEEIEbA48Jp1CDH3mls2gpRIeWt-yeIbS9qyDYcya-gkthYZQF_w-bjCRVsXp9sca3ZDLfdFWPwwgnfMdRJa3IxhOK9lysh87k-NzL-PZygZsA082cMJxzJSxf1gbv_QeezABa08Rs1r-NP6z6cCNuIW7lpIRSSUA4mQvlVyAAc6XfKstvpLFDpLzc-ece74nsKEYG-8SHwQFenbs_98AiXexZNqRIvum3kQIXmXKoeeaGWFRheAxS0AVKdLSOHOHHt9-p6o5za4Wpt8oJbdZ209qgA-1OP2qJ4kGv9c8166EssSbwkcTZzVHPoEhdHhe6FdwN60RCm7poK4JRL4QpsyuwHUyQYuYwaiASDwreCPKyYU1l7J1qnKjMuyvvDfOSs5OtuFWc8OEslQH7GF7dX3WPAOtx2zwXtzjjR8akSLzzGVIKQBKPm5OQKezG870ZqrjjKl1YgD4cDD2GGJZ29oCLz5RVtFpAzrTUDJBdvgqH18jrVJgy3ig==\",\"id\":\"rs_68d3c8e8b1dc8193b77038de6ac0eeef008930d7f4c0b58a\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"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}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 1.091452458s
+ duration: 720.861ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_6sdDb5nHKbbMDdHN5xmcm7ri","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_6sdDb5nHKbbMDdHN5xmcm7ri","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ 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{\"id\":\"gen-1758709996-xuyPl3glOSzMjEdyB2aR\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758709996,\"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. Would you like a forecast or tips for staying cool?\",\"refusal\":null,\"reasoning\":\"**Reporting Florence weather**\\n\\nThe tool returned \\\"40°C\\\" for Florence, Italy. Since we want to present this clearly, I’ll say, \\\"It’s currently around 40°C in Florence.\\\" Adding suggestions like staying hydrated or seeking shade is reasonable. The temperature is hot for September, but since it is what the tool says, I trust it. I could also convert that to Fahrenheit: that's about 104°F. Overall, I aim for a concise and clear response without heavy formatting.**Providing weather details**\\n\\nI should consider if the user wants a forecast since my response is minimal. Even though the multi_tool_use wrapper exists, it isn't necessary for this case. I'll present the weather as \\\"It's currently about 40°C (104°F) in Florence, Italy.\\\" It might be nice to ask if they'd like more details like forecast, humidity, or wind. However, since I don't have that data, I can't offer it. I’ll keep my response straightforward without any special formatting.\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Reporting Florence weather**\\n\\nThe tool returned \\\"40°C\\\" for Florence, Italy. Since we want to present this clearly, I’ll say, \\\"It’s currently around 40°C in Florence.\\\" Adding suggestions like staying hydrated or seeking shade is reasonable. The temperature is hot for September, but since it is what the tool says, I trust it. I could also convert that to Fahrenheit: that's about 104°F. Overall, I aim for a concise and clear response without heavy formatting.**Providing weather details**\\n\\nI should consider if the user wants a forecast since my response is minimal. Even though the multi_tool_use wrapper exists, it isn't necessary for this case. I'll present the weather as \\\"It's currently about 40°C (104°F) in Florence, Italy.\\\" It might be nice to ask if they'd like more details like forecast, humidity, or wind. However, since I don't have that data, I can't offer it. I’ll keep my response straightforward without any special formatting.\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo08jzPxLRljLv8Tguk1ShMKO7iH5T17R2AAcJNvt9-kRYCU7f2nKCplW-UAFBIf5WPw09f5YlUFXWT94eymFSsQ_P_ZAEmEcmzKCBtboo0PjepzFez54Df0AID36QiD3TMBufJ3QzpyRu2_ew2U4DPJxN1Rgd8MaJrozgVT88P8hcDt3FAtAXQUNpLZ16tBrp2vPwyliDbUBlX8lSRAWHKJGWcBNWiKiu3Fgml4TV4R_I7hQP4gIL5ORfvaC-Be3WCGFRyDLJxz-fJh_vWCFYMjgP4J6r2D0qNQZd8_8WB9altj2-WFiy1FExhF_bx0uUZ2bsU2vQnl3veKsZ6MIcC-RRs31PdIX7pEeUq64eyqPSuZblynigGrhVMrlg3V1EeY769d2Tc8aSSz9rO5kj02cD1QRSFgavPFL1Suzdibu6rskHJGr-jOcXHzmvmeAx44j1qIGHwfjVN_vlgcxWv--JpHv43fxz0sNBh716qjefRpiH4A7-0YxmqnCvX7j5zVd1Bcd88RIiQqyNExkTL5MWJilbBRNl4hPznAo7Ya69baLecxLryrWLvFlq1LAWDSADHi6Ywd3KCE3mY9czGqsrE-hqvtWJX2C0WlUfOD5R-xb2W6vTO1cpiNZLlTcmocQXUi5pZRChLidJoz152mlOvQ2MTyP7fN6rBs399-tNjhUg5KFFWCy-WQEWKu_vbGae3f08MlR0d-FlImSwKMVmXTmCL96eQWRlgRLcmGSUvNls4jinyXF3psQ3F4anUSghONozstnOSASBXaclxs3xkMmJmb-eDZEg1KplaUFOIl2pSMgjdrOoMuUhnULOYTjmHai8qBpbqzBdTSSE5jNOpwOCuD4X5d6kiR3CZ3G3s1CjQFKksEYxPN0qtCg5gUSLm-s0D9fQr18TqzwksiOgo6IGMpgR6odiENE2BQ8u12MyEWEiPd4D1ECG45wScBXk0C-3EumYEShvBAxMFwyfgsTKKRE8KO1hmfdj9fZ5n-yEiFvzF4c7VuULoRLGu-3_4EzV0dF2Q93Mn1f88kmbqEz4OfIGPkoejYZFf_M6Awh9-E3KTGke8Ea95vl6v5jbEetj4u0x_AtwKXp-wC36PnYqf0f5SIzKLTo6v1V_bsQsfJN6fooADpFWKhRElBA46FxRmoYx0Xvf9Pd_ba2bBsD-CZU-l3UCwR7S0ZJjG5KJcHnrB2QdY5pwsQ72FShWEQjQKMcroaS8LzujYCdqRQdj8TaG3qhJwWef1KMV6xG6qFLYNZMYCiNtl9sdUQTuglMbvBWswjzse_7pXvqmEiHarPc80hlNtQ_DP0CQRwLUf0YXM7IG7F3ziAuOfvoihyCAh2zjtP_8EGT55ETqPH8fimwcXd8_wIIV2LAv09d1Rm-h9Z9CpAmaAY-b0fFh1sF6DpW7__cOPAu724URYE6DbXcW46_UxTqHeHBtw-K5TCHm1mqxuVRRdOhPLwj2vDToOIa5lY5aB9ZIutgjbqMhAEZBHm0ED1XQCYxluT5W0yQ1RofpsNVvSBTMZ-nKnAii3VuJ2rwFyB1dOEic0IQZNH7iJ9ea_HKCxV1tLh9LkzLxdaggsox206aic7gUMGca4C7lv6uoHwrSDb16XPyhHnTI_UktZB9KYsUxFcEeyBNQ0xiwi9u5iBCFYPzhFhjwLqBUiqQbswKNo1GA3X34kQqCZZ3lhejM2xv5BVZcVSuTiSztgS9HAuzgW2sur-6ZorIdWxmXa5L5liDzAK4AQk0mET32tpS-3ynstP_kMK2TkJLcE9DUl5WpWp4RnHNBztIVij0s-DvhsLxJC3ozNHBC6f3Nt2LRvuPQbmMkN08gPJWyuWls_6M_JvDIxWINegdG3v_5wQ1c3sg20LwK0fWuOs_hXgfILR2HAd_m1sVob49Epy4tEhs_4PRLG7cQIMHFz316Wh253LIShEgqe6W4BtV__MFUoyWZN-81IH1y1bxzNb6LhVIH2DAcZ6lCvDb9hF0NCNj6Y_Nj0D6LxFnhJTmoHeJ9hCpKM46zaiuE0nge3V9UTK3wIHfaLMpORHu9H3LwBdAso0wX_7gB7hvR5Hq5kn_Jreuqfjhx5dLcoTIyg9Doc4fzpFh7ervcIhP9ChXcZ9I7k1il4rkbtcRnJjR0KdEmigFanNBP6OGCnNLu3JdEM3uhdNjc32O92t1nf3xTIA7hpKMQJMd3vkBq33HOjDZog18iLRLmZuYzm2bYzHvSkHuijLZzDmHwyTtW4V4RV5CTGaMspoIMrcQpoU3Gz4EX872lp1kYgRWKoBGv23CHuKz7BOT75kf3twh00A2z_dGVGbgQT9EVJPK5yzNTlrRl6O--tskyVurkD_3H9oWEvHXG_d-Rnmc8h0pX1pACy-dWUR6_GJZ1aa-IjG2qxYJzx1oZGzI7x5hOHpA39BHHTwfd7c_c_kPa_5g7zoGO9cigebS0Fehsam4xOINKxiB43BqPqkJ29VoNuLl6WBA5Zcx1VBMYraNWzJSwNIIzVVzjB4twpPis4zn7ddTgfgr9nN2SR1Qn2KiKqom4F9S1m4B0xisNUbk4qwLtMp_l15aDyVddTZThEYsXUqjCaCJM7VGc1-wBiTttAsuCheg7ud4uf23y5vWPHQFmTALDVbMbI4KeB7UpBJJJng4TP-jr-lRk3sNCqMU9v1wVWohYKi0FznYtwPfrGtkZT1IraCpfg07D6SV0zZlESjb3sUBNdTnuDjc=\",\"id\":\"rs_68d3c8ed9ddc81908f992d15e6c4a658\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":92,\"completion_tokens\":289,\"total_tokens\":381,\"cost\":0.003005,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000115,\"upstream_inference_completions_cost\":0.00289},\"completion_tokens_details\":{\"reasoning_tokens\":256,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 909.135917ms
+ duration: 659.239875ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_azure.yaml
deleted file mode 100644
index 8f7ec2a6535e32f96a21b2b07966b3fa8ff5c744..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_azure.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 520
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707112-SHVSc7WvzkODy3nwv5sq\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707112,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Gathering weather info**\\n\\nI need to get weather information, and there's a tool called functions.weather that takes a location string. I can call this tool directly, which seems fine since we only need one. I plan on using \\\"Florence, Italy\\\" to ensure we have it clear. After running the tool with this location, I'll check the results. I just need to trust the tool will return something reasonable, and then present that information clearly!\",\"tool_calls\":[{\"id\":\"call_qQ7LiNOauuYouxSM5ci5PCuV\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Gathering weather info**\\n\\nI need to get weather information, and there's a tool called functions.weather that takes a location string. I can call this tool directly, which seems fine since we only need one. I plan on using \\\"Florence, Italy\\\" to ensure we have it clear. After running the tool with this location, I'll check the results. I just need to trust the tool will return something reasonable, and then present that information clearly!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo072sVHHC_JFrgGu072vONHSI4HLEe1naxobGb7iCdou2Qu0Ej08uuCOvwFWsQb8eK23H9hq-RWAsmNjZlGA7qfzZ-biqZwZhyNrNTkJpWF3K4ufwfwZ0k9j_0Cg1XNO0brTiUaDfS8tZlO7vKmJ9BkMAKox6NnabGJZ4EIJsNDOcJ9-7gXLil4W20LRbXwBoYc0P9BQmnxXb4KR8QCHwIkx45UOpCOPMkZcbQfRm1lJF3a9pTQRYb4mbej-IKKyrDVkmp5apVIV3Wd88E1UduHWdrpNncFGG2oVNQL9m8D6kt-rbkZfxpkWcvN77YRKrjlinqbGMpzdPYJhb4WBydzkb-c84ya6JE29AYxZ0_1NxGCsFnLRZAlvSlX567oJnayiNCja6KkHOGlNk3_tnloRVr1l340ZKDHRAwrkmg0pyvSZwovgRSGqiKGdy_1fA7J4UKs4aZvFKEVm4uMwAhlxHiP_JKER6kh8lKnUyo5AWypuFXfETnlCDYWDggeab7pEf8C9Hsjv1z1zXzinEjAr1YjA_r8GZ31Uo1ymAy8zpnKtbmD3rpyIU-H-EgFiTVUTar2cQIPja_GOk5I6nTBBxVAVNeRyxTACuPcvlEurMBwy6JEBnHK74tP6mnFT3JLDTp-qYK9nMWqoq2YFzZbraCi-zvucbIHY_HUUP4879L2YJ_I6a4wePNHt-9cKkc9tjsXCUBw-kdnR6U5w75BjVgXy-jYSB5jSKXx5lwmcXEsonoRNRhk2cPtR-65xTZH_RH1hbPYJKAGSO072YIa5gNWfJbp66TXOEoztWsuRKqbUByJTT8EPpw4m0BWRcxOgBY_dWZc8zcluHCYEXodDN3P_g6Vb0OMl5F60uictIQCXTp4c8GAv0mMlge9vjAuwIR_nNTfZyzeI0Dri5WaOOG1am_XZlWXvFwPWfzdALcdou0OglCXM35q-2cIXlxsqtmKxfybooAZTBGn-Yu1Xuw3WKTHEqpRNGTQmAqR55kI_S2VCaBvPQzN4X9ODwsJm7qRIscJPifhWzrnCYusK_il2ZH3qVMe-REwfEB2uP4FwR3luuTh6CvKQRQx2CzUSVnjnTlygEnjghyrPhBQbi9Y8R90fgY6PBBCW8cs88pKeNYw6pGIi0p81qKeF5aaEZEYZ4TobdWlmZ1b2ed0f8qmADnIxvaWEbi9X0gUpp76xdpm16xHfxxW2LNtaF0j_PHQcy2A8G4bYHoS_Rtcjg71kmxuERv00DWVYCV_ApByMbxnGUKNBKi2PSGc9UZj447wTxDRx3sCqo3Fyygybi9u54dDoQ0SjOaEIejhJJ2gT84iqN0o78r6aGiJLeP4oZoRO8K84UXOzg7uglbKHzC0Wb3mJ9e0TCqq4lHcLBKJHiADYseMIEjm-Rh1I7Tus1WRonUMNSXE3nIfo_MwLa3qEAOuo-iz1PX67EPFF7wogDukSGwz3iA_xJXXZdFPQ1cjpssmn86OK-Y5_b-xlZISCpPkbPak_jo7lj3AyOxr9LsGUy7NyS_eR_qSeTX6R3u5eIfYYcE6NvzwB8dU2fb1HY1HuDijy8ukz78GuZgVczO5lbZZgK5atBT05I2nS4JI4wLVUYL_x54s0pw0biwOsEBTAy5A5iOpFuzCYc38YtjNqRU8Yhiyccs7v2valld-0w1d9xnpO5mRxT1oK1mVRK1bucFMv8QUW40I10KgjBAFNfUqG7ef1DnhFUqXGCTivu_CxTXy9Q3XhdNHeyk-IwmHNM55iLSpYzXycPQADQbn9v7_xeqKgQWbWDgAN-U3hiEfmO39IPhYkRarVCuFhDdQCKIqAG0KeURo4KOvQyJx1Tc8wvI15DFc4M91JhjeEFavu7KcGqxAnbeMA9FTXhoU0dj6h9NoZyhNGAM88=\",\"id\":\"rs_68d3bda94c6881909770d8eb09935c5b0047ff828f4c5408\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":63,\"completion_tokens\":150,\"total_tokens\":213,\"cost\":0.00157875,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00007875,\"upstream_inference_completions_cost\":0.0015},\"completion_tokens_details\":{\"reasoning_tokens\":128,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 520.082792ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 772
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_qQ7LiNOauuYouxSM5ci5PCuV","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_qQ7LiNOauuYouxSM5ci5PCuV","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707117-GrVr8BPVX6BpyCl19MbO\",\"provider\":\"Azure\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707117,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Right now in Florence, Italy, it’s about 40°C. Would you like a forecast or more details (wind, humidity)?\",\"refusal\":null,\"reasoning\":\"**Presenting weather information**\\n\\nThe weather tool returned \\\"40°C\\\" for Florence, Italy. It seems to focus just on temperature, so I should present it clearly. I could say, \\\"Current temperature in Florence, Italy is 40°C.\\\" I might suggest, \\\"If you'd like forecast details or humidity, just let me know,\\\" but I can't call another tool here. The response needs to be succinct. I’ll also mention that it’s hot out and recommend staying hydrated!**Finalizing the weather response**\\n\\nI want to keep my response concise. The tool doesn't give time specifics, so I can use \\\"Currently\\\" or \\\"Right now.\\\" I'll finalize my statement as, \\\"Right now in Florence, Italy: 40°C.\\\" It might be a good idea to ask if they'd like the forecast, but I’ll stick to one or two sentences. This way, the information is clear and succinct. Let's deliver that!\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Presenting weather information**\\n\\nThe weather tool returned \\\"40°C\\\" for Florence, Italy. It seems to focus just on temperature, so I should present it clearly. I could say, \\\"Current temperature in Florence, Italy is 40°C.\\\" I might suggest, \\\"If you'd like forecast details or humidity, just let me know,\\\" but I can't call another tool here. The response needs to be succinct. I’ll also mention that it’s hot out and recommend staying hydrated!**Finalizing the weather response**\\n\\nI want to keep my response concise. The tool doesn't give time specifics, so I can use \\\"Currently\\\" or \\\"Right now.\\\" I'll finalize my statement as, \\\"Right now in Florence, Italy: 40°C.\\\" It might be a good idea to ask if they'd like the forecast, but I’ll stick to one or two sentences. This way, the information is clear and succinct. Let's deliver that!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo07239N3sJfPtNXtUggbwbSwwn8W-nvhd9fDiuXbseMjdofxAPQRtWiNWokoJC1aQZLUuA_Lw9kSKLwM-kPmIWiaU6IARsIcUnWxnG_UrOGA3jWGgt5XgTBMaTB3cdHeqwqpDO2oLGRB9S5qheAgdaNYLWzTk-Vm_eQ7qzt9ORd5BfyAylEuObIZEEJIHIRrbjeIPAbtuwt36HhyJW1OcmWO2rK208sz8z8B0xXBUe_XwO4jQth8U_ddH_4UOMb44xmbdRSRu0IYMG2tY6EyTsfBpUk8aBXxcihcpthYZ3QhBoLOih7N0fa7NFkQq8uedMtcj2NwpMxIuiaecA34bLZobIRINCO5J-KOVqyT6KU3aMw04aSOutg2nYS40nRKiFyRfu_E503DZhhKzP5g2d8Nwup9EvgwFR81YbUTmJ0Dmp7kqmFB7WTbQ3-EB8T_Wtc8-fDObnAKCfyjL9RWM80Byi4Il3MTub3nit7W_c60SGK__s3eFP5qGjSoJC2I_r8s0_uepSwoCKePfs2gp0_9sj51uZCFZtfa3V6DI9MJyFmwWNCtkOvGZxDHHsBGO2sZv9SgiNqAFJseYJy92o4KrgQysC-dIewcpjKfpdcod0UoTWH6nLyRkzKqYeq_D5ZR5aFwg_nbM4m_YfUvmNE57ksK6nHzQLgjli-2LvijvvgVukdlFrOb2YRRDLybb7gmvcS3qkeZl8s-G842m2nmNUPsCeVGgptTsE6GrBNQ4gkJB1IM02Ur_kHX7pt-qaUmN1Je3NfaGFILDJI9jDICa29NDtRL5ZN8_re-sMHFILWLOhHmRTDy4PljFALUlWVerKj8u2W6Y_Wokx6AB1NyS3nPQrw97DHaCi1zJ1csYbc-Y8-N5OqFH_ocNVeLTkS90-PBMHEqgtAooo7oxHA9ZzVnQIKkXeDnKiVeMYtsBdWhlqath2bas7V3Ly0Tngnc176cY6D5-A67-Jj2ixwsUOtBIFiHx1YISI4YFfgQH43yXcWhPLZUFEQyVln1j42KTLbjLL9qK-6IbRYvtG7Fkvg_2pFF2v6dn6I4qA5F3oHm4zv9lcpdpNmdpFTR9iPjWXzuAGj01Jw22PnPpcrrwusVR8kSuXdvMrk0-C_SMqGMPSqtvdjL76Db5Y8h_bNlBbrG4AImvuJ86TgF5Qom8jq7fOmcVfwdQCovuFUoj8gSw85N-a-87NhkxQsNHHVYn6vK4JglDTNF1zLD2G8pkwwRZfY6wSo7VlQSb8U3lzsz9txXJ8iIufig2-5zDcVUl47hZlbUheQKmYRRBpTav1qn0s5twOfKU7Rf0J34yDenNZssM4fIdgzrJnY5QOaHJkQ16qjvSlJJBg2NuVUibi9vMB4YHmCj5S6-Y9yMWlqfYW32CiJJxmTmRGX6O17x_uZ4RYj2OPryUhcEKLViwMsRYNgXcA7lcD3CeR31BHaafx6Y00v6TCieGSbv2YbNdIZY1hAi6PBFhTMUoWPClH8lSVD9TdwmVhGxIeUakS8IK6HzxiVyn0XcqwhoydwV9ciaxuAw05UgCMuEZcS8Qs1QLivUC8Esbkl5DWYes4obN5K0VfObYD4_RCr1DGCNJaWIkaWwxZNoXxuChCX-UwbxvhTLoMNceMjABjd8IAjMdMcLlTmDWrs-CF4ZuBqaUjcBb2cQfx_TlC_4ZYliBAEIkocsaxsj-KU5dTMNrVmsY-sk3V9rqS7eRIRh6btzt2J82MD9n-_AXm1RnAb8zr6_EXxv55jSKAc5po4yYCQq2E_ALKP-h3Y9tJXE3Q8rV_mTnEtt9Qrbv9i89rqKKoaLdTv16fEqytSkWMRrg-UCd8zLVgHOe4LvClwILh8uZc786steCVlelYe_m9lqmOA13MHTbMFBcdvktm4f9cSvml_b4pGM0tSxSpUoN4QXgl3mlZH8MAxDuluzw_jxlwzDbpg20XNyoAtm5Uh-QU3HJMNWAF8FluyeG11B71QUXyNTVHAmgIiO8hFkwBAVYsqFydd_tjU2k4Qy7YUcvDmxMTT5vbLnnzMU2oGjk1Gy1IVSglbmcQPVFMW-lSigj3hxoyrWLj3TDyhKNi5IhZWa3QFaAvl7i7dJQrd5K9jcgV01-d2bR1u1AFdJRQ4L1fh1IyU42GoLbh1ihXJV1745_L7BnXtSvNH49pWzwBE3E7pZ2wlapKpeX9ez8jtxw-VL6gwvxBsI5Czq13ahx95nYBi_7KMr8Kwv4d5K3t_KVP_2Gw79Ys3oJYlQRGtQhI1kIrN9ISiH1Rz5hj42tNgy4hMYS0z9uezEVl9vCryJ3X8SLJRXsPQb2gHuIqUfzqhrgvosv7aYBiHPbbTLBq8Qli-uQs0t7RSYskD9ItsaI91xoCQUjfTSDODUW6iDEM7O3CrRazMx9skTqjZj_uF0KaXYAzQvaD-Uw8_R7qhO1nWDxkTzjzSusXWuSZFamNWDjtXzbsesZcJZIEdoHE45kH7SzyifCPaeV9cXyzOI3\",\"id\":\"rs_68d3bdaf58b08190a300a7ecc77fd6b6\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":92,\"completion_tokens\":289,\"total_tokens\":381,\"cost\":0.003005,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000115,\"upstream_inference_completions_cost\":0.00289},\"completion_tokens_details\":{\"reasoning_tokens\":256,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.018084208s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_openai.yaml
deleted file mode 100644
index 2827db00949c4f2b8b03aa705fe9337279e57c18..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_gpt-5_openai.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 521
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707051-ayTLZRnOYjQfQnGHXIc8\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707051,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"**Checking weather for Florence**\\n\\nI need to get the weather, so I’ll use the weather tool, functions.weather, with the proper location format. For \\\"Florence, Italy,\\\" including the country is probably necessary to avoid confusion. I’ll go with \\\"Florence, Italy\\\" when I make the call. Since we only need one tool, I won't bother with the multi_tool_use.parallel function here. I’ll directly use functions.weather to retrieve the weather and then pass that information along to the user.\",\"tool_calls\":[{\"id\":\"call_1nTwPCVFTHJYq0BDbzlqZ3D7\",\"index\":1,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"}}],\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Checking weather for Florence**\\n\\nI need to get the weather, so I’ll use the weather tool, functions.weather, with the proper location format. For \\\"Florence, Italy,\\\" including the country is probably necessary to avoid confusion. I’ll go with \\\"Florence, Italy\\\" when I make the call. Since we only need one tool, I won't bother with the multi_tool_use.parallel function here. I’ll directly use functions.weather to retrieve the weather and then pass that information along to the user.\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo071x45Ao4baXtnJzPWvz0pXKlKDarCrPqJaEKF9mnFZwuK-0Z0v1w5-_mKaC6nxBxKWL4NbDNVhVe2ktZpK8fH-eTbzW7SHtNQ_PyLnI4_1wp78urI7JiMeb6tBAi54GxrWRDXaj1X97W3PqiXsS5MSl9Er6hAQOcOo7xq1BEDxaPuTPZpMyn6tbgppykAgU6HopePOmoFNYuSAp2i4v0TOkFUpIdfr2e8F7NCyPULXKzL4-xijDkIFgtagb8txlt7Uyp66vEjAd-Du2Z5WoEYQ6ti1qEL0Oguwwf6BN0Jg6sWhirNcNC6d9hodPQmsIcbIe3BA1R1ejuox6ZtZatEPFsjtyDg6yWaC9v349xkvCNPjwGBBYWb_G2BFcLgjOeyQBmJ2uDYoMDcvQ4gCcNaqIyaqTZZ4HLKCs1VjqWpVaSA3pBOvFoEpGOK8dm3z8d1omMBUHKR28K-U3nylA8x2eks7zhzJqY7_AcvDpK4ElTcCEYYB7NEZq5_hml1GxIzU70eJzCMRUGhk-e2bjsj_9jtLCkxpZz_b6Q9T0xilJiCH53p9n5NDQBpubnUKb_KLF3JD_-NhsYJVSJyHAsK9t4IA_SaDJoR7bYNhRT1M72WjYQAVe07In1OaLHM0s0uBVG9MQmuQbFPPGxaHCE0OkD0dI2Ui8o6cGFAMI3vYvTrD882EJ7ER0qB2v4K11b3qApgzGbmSv_q0qaijIX_lRVDg_h9nvCGga8XEy_NhrXBV93oUWo2B5m0T0TeghHYQsGyc2GWjHMIOX-zez0Kd2bq3KuJle7R0wTddRTYSDmrB73BXcz_BTxBEAhFBaCl4UrVeiVYMPcVybb2nc6F4N42fUHkSuCWgeXuZ_rFtYaodWWjfBZPcjUQJXqFaSNq2dAQ17xfr1cG7t-VbMcG2eGtRd9aRDCaSeA_a35JdMLNRy4CNlYBfN-qzlZJG9Mb7aM6m0rVazA6N4S9AppUtN4inigyVLu_c9Ud06alVlV3t_FjqitT6VIjIKDI64tZY4sKGH1t29PipsVl8wk3ExGFkxphREJmyvQxVIIRgQgOdSdk7GbGiLOEzLkOBSvcv6Jlv0-TFRxU2PbW2uyLK8kyZdB_pe8Y5Y7rDxJhx3SLNmni3YYLtLVJZ2qMEPlTHJOkksQcRIyj-37irt0Vqs_UupfsL5rM-KA5ci-hramfUZec6GrFhpl2gEfKWUWheAzOoaVTtBAMoPNgsSWeI2-qRYiQstPHYJySXj-lGr8-Dlp74vWzfje5bkcwMcwi0FvYHCmJlbbQizO_kVsUAq5tKdCIUZn0lhTjXmyyRL2n3b_3z3cmZxavWJWtPRdHo80j77ffNaUF-IAi4auMEqMjWYk9Uayynsc3Bge8yT0d1nPQOlhtWt9B-_sjAFJMngYuQWDjH0ZPwhhqnRy6-euIvTSWPj5JU66Gw5lPpkLeAbDspycXswqY0zdbmJjZb8x7qhOm7w5lYgYIuAK8N-gHjkfHQJXaw097Cjw7OvcH5cWGB7Mi2-PvzrKPA7iF65BmvM1YIZaUKtwVPD9y2VirtTHmFXOaaypmQdPSzBuneVDvH3Q3OIudQZmqUwqaXshP7S_za_E0KOjqSpAPqtFZa6M1nxVakn3b2tBLl15QRWUdQr5CrP5hQxNawdMbN13-s7yubIeaekYIrn3MW141HV2dx4hNYjbeam8XKk5KUiv1VmeinmMuSqCQK6jqU4VGEBEaM7XZihneHfnA44L3_SSyXiZQQ40elRGm43__g=\",\"id\":\"rs_68d3bd6c9f348194b03f60f9a6ff9d3103533757e09dccce\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":63,\"completion_tokens\":150,\"total_tokens\":213,\"cost\":0.00157875,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00007875,\"upstream_inference_completions_cost\":0.0015},\"completion_tokens_details\":{\"reasoning_tokens\":128,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 627.963125ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 773
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_1nTwPCVFTHJYq0BDbzlqZ3D7","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_1nTwPCVFTHJYq0BDbzlqZ3D7","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true}}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- uncompressed: true
- body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758707058-5DsIxNqec92OgWRvLpVl\",\"provider\":\"OpenAI\",\"model\":\"openai/gpt-5\",\"object\":\"chat.completion\",\"created\":1758707058,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"completed\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"It’s currently about 40 °C (104 °F) in Florence, Italy—very hot. Want a short forecast or tips for staying cool?\",\"refusal\":null,\"reasoning\":\"**Sharing current weather**\\n\\nI noticed the weather tool returned \\\"40 C,\\\" which must be Celsius. So, I’ll present it to the user straightforwardly. It's about 40 °C (104 °F), and I'll suggest staying hydrated. The user asked for the weather in Florence, Italy, likely for now, so I'll confirm the current temperature in Florence. It might be useful to ask if they’d like a forecast, but I want to keep everything brief and simple.**Crafting a concise weather update**\\n\\nI think adding the Fahrenheit conversion is a safe calculation. It might be good to note that it’s \\\"very hot.\\\" So, I’ll put together a clear, concise response: “Currently around 40 °C (104 °F) in Florence, Italy.” I’ll also ask if the user would like a forecast. This way, I'm giving them useful info while keeping it brief. Let’s finalize this update!\",\"reasoning_details\":[{\"type\":\"reasoning.summary\",\"summary\":\"**Sharing current weather**\\n\\nI noticed the weather tool returned \\\"40 C,\\\" which must be Celsius. So, I’ll present it to the user straightforwardly. It's about 40 °C (104 °F), and I'll suggest staying hydrated. The user asked for the weather in Florence, Italy, likely for now, so I'll confirm the current temperature in Florence. It might be useful to ask if they’d like a forecast, but I want to keep everything brief and simple.**Crafting a concise weather update**\\n\\nI think adding the Fahrenheit conversion is a safe calculation. It might be good to note that it’s \\\"very hot.\\\" So, I’ll put together a clear, concise response: “Currently around 40 °C (104 °F) in Florence, Italy.” I’ll also ask if the user would like a forecast. This way, I'm giving them useful info while keeping it brief. Let’s finalize this update!\",\"format\":\"openai-responses-v1\",\"index\":0},{\"type\":\"reasoning.encrypted\",\"data\":\"gAAAAABo0717qoB__VmT-Mn7H2ZaA90zbJP0wEiJDTJny8swHdHYslffWT2LfalBjizVk6S_NM-lbcem1kVAetvRHjYs9tu_d7wD8kB_011ZITIKmKY0rVAUXaWmiv3U5bvAYyipkAfuWLrKcYTGxhYdOY5Og9ZcENPa0DlSQ0fabuPZlNakhP-pHLKpn9uYLj6jFk6H43u1ohUA48PvXJjp7XL88LzzJhOBBeMH5A9KIYhUbjV9tCsF-zV8hnw9WPl8-5iYCP1qLDROHOxmZeRkPKiApvEfLVi8xF5Hp_lvGZqRG1ai4TytWepyDHsSnJA6Rit-FYbMNicAc5GWRZ2nDgn5AfS9xMzvUZDN16GiODFtCG-z_0TWbASBZxYwkI5E9hrC7Pw3YJ5bP1n91kLQu904Xy7reHr2QdC-9MNivFJRaGsRc2jE20KvES_aXDQhqU2QzD-YeCmfz59Q4ciVVLfQgG8y5IbXu1pZ7APzIhLtg3Crq8VOB6n00TFuvDGejNj_os8pFsoa6E7r8xdipJJbpaVipSm_zgf8dFxWS2i-cza2Knv6jqSRDY3UbBY9CAFm4ak53fBof04jNL8R20WrZx0vbQqUh5WcUWwXFAPSf9B5HzA38udsW2SHxbzlOaojP1eZsu4dFPwdf_ijTt54D9YIKxRj7QAxp3rqv4n4XSUnLxzTiCYGUeJKdRke9VFeewYTdVWKvGShwTmVxjvqs3m_hlRwXyjBLnDWxDTRs0MMwzWG6_8YktvaBYVU44r0iZQs9hYxNUoUWcYQDpy6KM3aQ5KHEOePpv9HsNcUP20uNqvYCOuhqCHIeEwwWYsueiDO5o4lxhyj8HLWK4ufbdH514VrslxkZY-o2tsqtcBw1rD9TVgwgaGvTPBv8U9VA-SRDmeatGDZzdEPc9km4_6jaa-42GwGYeg3exV05WeyezOwD0J6SVXZsGb_hN5y88ngxo26MAPrQvgtnGKY6lhfh9dPSOR18rnkn-SVjBB_gr02F7W06jUTOT_0ONBCqXFlCdzNQ5aNDkCZC2MbToFFwkRgVCJfKdHG5Bs5fGTbEQQPAVTp0kEOQzKElqw6fAuiOplr2hpfvxnvQL_YS4WJCZ1Si_szGPrMjgurUnyE5jzcz8tyKZTENC_aMkLyo1s-lKlKXH-hTqsRjvH3fGBTbP_Edk4tDX34uIGVj0h5XiNUdbcuqeRM5ngRjkRXPXnMAdmTBm7mFWN6cZbxTaxVq3TQIj0TmhccwfqzjmkgvSraEJoWGwqfxrw0DYA6UVkRFlXSgY4YbdfXyuGECPo1x1F6P7IWeIy0zyECPZKNjMP8Hk9W-rSYSxvd2zUjhyvbVFQZ9uqoNLlA7CleV5ABNxQjLtYFtbv8kteaQj6BKR4yHWrICNuQkKMDz9L7u8Jo0oRKZ2q-0tziq02MLSrnvF5vOsFgG0ZTmYSLyzQTkRWfYo7D_MFXiDT6t7nTilWgQNhTnmiodRXb30Flt8uLMYAM8wh0LLTafjyeK7RvqzzQbBDtBQ6AFWBng9Q6hDK6_lot96EP1F0THXtGh7ypAzXXlvtOokwgW_m_ApiMqtzfq1Tude_Q4mgQonnwD7OUFYbSTS34Qis-gBcDvtd6rb-FxuhDfLWraVh8sw6Fk1qfsoSkO17dC209w-q2yGBVGVOTISDgy9l87oES-LWfnCBPGiOP7_At2CPtHvZBaquAFyfRa_jr_J08uu_u4AVZV89gNCE10jyvfqjx_S0KYNLD-2VYnudXTcreESjNBkKW1wAgS8i4Ar4Lay82fTw3pKDfTmCSm_v9Tv1slzCyx3ChOQoQ5_gKvArPCWU7h2NGxkN2SMS8SOrZA5fZnoELG_jDPE8y34A9RfEJR9ADZ3fBO7gWeH6K4idnP6FFptgCreWUIhVZbCejKE3y0OHJGFEw2PfEpb2e7h50crfocs3PkHRTSAAfN0pPEFQnr53iXf0dPZkgxgZ8G-f_tYin7TYlulmpQfZVXaoB7lb5UTw_LkNLSKztOzI7pHbgfqpujl9pVqKSswRlq8dZ7qrtsOs27otFfblWL95gE6hJneGvDJLcY89h1HBTJ2BnZ6afx4fbqi5kIi0Ri23ZEA1_jnSehFlFlZkIXSUsmhIqp5MuNps95xM58eBkCqExy_oaoxUraw0Bc7oPf9hetGRFUME_6kCGJ4NLBZWlTKFVyVQQkX4eKZFWkDdzgQPwwZ6r_EBaZpynv4oQGw3FkIsnw4CeCW5FXXbYjHgsYBju6QW3Y73JrGgWty7LXG8AM8xaClYES_CMDRUkrUencJjvUT1aoc2EwxvU84pZmL20UFB81TPG3Ir-lFYKIY7tCmw=\",\"id\":\"rs_68d3bd7371448190a2b8b6f2b5792699\",\"format\":\"openai-responses-v1\",\"index\":0}]}}],\"usage\":{\"prompt_tokens\":92,\"completion_tokens\":229,\"total_tokens\":321,\"cost\":0.0012025,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000575,\"upstream_inference_completions_cost\":0.001145},\"completion_tokens_details\":{\"reasoning_tokens\":192,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 950.966458ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free.yaml
index 2caeff58150f5e1cda986ab59a80dcd5788b160d..874207100d5ebc43242afddcb4139b419fb72aa9 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n{\"id\":\"gen-1758709923-KWVBVrQU0ASlL4e93i2P\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758709923,\"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_43524874\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"},\"index\":0,\"type\":\"function\"}]}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":322,\"completion_tokens\":117,\"total_tokens\":439,\"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\":91,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 392.3505ms
+ duration: 288.419792ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_43524874","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_43524874","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n{\"id\":\"gen-1758709925-KW5q44trpZVPjx7magOa\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758709925,\"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 forecast or conditions, let me know!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":452,\"completion_tokens\":81,\"total_tokens\":533,\"cost\":0,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":440,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":54,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 452.725708ms
+ duration: 306.220959ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free_xai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free_xai.yaml
deleted file mode 100644
index c7358d0a40d00f0e3af6016ee25e5ec4fb9fa460..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_grok-4-fast-free_xai.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 516
- 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},"provider":{"only":["xai"]}}'
- 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-1758703682-sMZEfarEeJYWgV53Ca5h\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758703682,\"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_82975367\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"},\"index\":0,\"type\":\"function\"}]}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":322,\"completion_tokens\":98,\"total_tokens\":420,\"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\":72,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 744.523083ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 736
- 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_82975367","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_82975367","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"}],"provider":{"only":["xai"]},"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-1758703684-xxGdexQR7wCBc6J9mFQw\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-4-fast:free\",\"object\":\"chat.completion\",\"created\":1758703684,\"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'd like more details (like weather conditions, forecast, etc.), let me know!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fp_9362061f30\",\"usage\":{\"prompt_tokens\":433,\"completion_tokens\":86,\"total_tokens\":519,\"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\":56,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 920.068333ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1.yaml
index 35e6b33457261ce8236659a5ff2f8be4048895b4..b22bd6367cb1ed9ae1ecfaf5598db7d4b8ae27e3 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1.yaml
@@ -24,13 +24,13 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n{\"id\":\"gen-1758709876-YGFRzdYEAAAk1bt1c56q\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758709876,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":\"The user asked for the weather in Florence, Italy. I have a weather tool available.\\n\\n\\n## Handling Weather Request \\n- The user wants the current weather in Florence, Italy.\",\"tool_calls\":[{\"id\":\"call_10218675\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence,Italy\\\"}\"},\"index\":0,\"type\":\"function\"}],\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The user asked for the weather in Florence, Italy. I have a weather tool available.\\n\\n\\n## Handling Weather Request \\n- The user wants the current weather in Florence, Italy.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":390,\"completion_tokens\":115,\"total_tokens\":505,\"cost\":0.00018138,\"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.0001725},\"completion_tokens_details\":{\"reasoning_tokens\":89,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 806.625875ms
+ duration: 652.646458ms
- id: 1
request:
proto: HTTP/1.1
@@ -38,7 +38,7 @@ interactions:
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}}'
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_10218675","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_10218675","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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709878-S7COcrXRSnk3GiQQphYk\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758709878,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The current weather in Florence, Italy, shows a temperature of 40°C. If you'd like more details such as humidity, wind speed, or forecasts, let me know!\",\"refusal\":null,\"reasoning\":\"The tool returned: 40 C\\n\\n\\n## Checking weather data \\n- The tool provided \\\"40 C\\\" as a response to the query about the weather in Florence, Italy.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The tool returned: 40 C\\n\\n\\n## Checking weather data \\n- The tool provided \\\"40 C\\\" as a response to the query about the weather in Florence, Italy.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":518,\"completion_tokens\":164,\"total_tokens\":682,\"cost\":0.00026896,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":448,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00002296,\"upstream_inference_completions_cost\":0.000246},\"completion_tokens_details\":{\"reasoning_tokens\":129,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 844.026ms
+ duration: 509.812875ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1_xai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1_xai.yaml
deleted file mode 100644
index cfae3af126bc6622a40563c34291db2cbc515aff..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_grok-code-fast-1_xai.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 516
- 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},"provider":{"only":["xai"]}}'
- 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-1758703071-OYoxGlM88JpHKmoYwtBW\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758703071,\"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_84086126\",\"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\":98,\"total_tokens\":488,\"cost\":0.0001674,\"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.000147},\"completion_tokens_details\":{\"reasoning_tokens\":72,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.053124125s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 735
- 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_84086126","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_84086126","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"}],"provider":{"only":["xai"]},"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-1758703074-fXeB3bPc3Lz6AoGBMxkt\",\"provider\":\"xAI\",\"model\":\"x-ai/grok-code-fast-1\",\"object\":\"chat.completion\",\"created\":1758703074,\"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). If you need more details like humidity, wind, or a forecast, let me know!\",\"refusal\":null,\"reasoning\":\"The tool response is \\\"40 C\\\", which means 40 degrees Celsius.\\n\\n\\n## Presenting Weather Data \\n- The tool provided the current temperature for Florence, Italy, as 40 degrees Celsius. \\n- This information directly answers the user's query about the weather in Florence, Italy.\",\"reasoning_details\":[{\"type\":\"reasoning.text\",\"text\":\"The tool response is \\\"40 C\\\", which means 40 degrees Celsius.\\n\\n\\n## Presenting Weather Data \\n- The tool provided the current temperature for Florence, Italy, as 40 degrees Celsius. \\n- This information directly answers the user's query about the weather in Florence, Italy.\",\"format\":\"unknown\",\"index\":0}]}}],\"system_fingerprint\":\"fp_10f00c862d\",\"usage\":{\"prompt_tokens\":501,\"completion_tokens\":180,\"total_tokens\":681,\"cost\":0.00028956,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":448,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00001956,\"upstream_inference_completions_cost\":0.00027},\"completion_tokens_details\":{\"reasoning_tokens\":147,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.123096375s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2.yaml
index 6ed3039189299dc5f9de1bac24e7164b80f63f68..6ffb690114593ce019680b46fe92e2fb754e5e87 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2.yaml
@@ -24,21 +24,21 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n{\"id\":\"gen-1758709846-1RnWtBdGud92Hti3Fmnx\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758709846,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll get you the current weather information for Florence, Italy.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"0\",\"function\":{\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\",\"name\":\"weather\"},\"type\":\"function\"}]}}],\"usage\":{\"prompt_tokens\":90,\"completion_tokens\":26,\"total_tokens\":116,\"cost\":0.000097,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000045,\"upstream_inference_completions_cost\":0.000052},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 975.89025ms
+ duration: 708.914292ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 796
+ content_length: 764
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}}'
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get you the current weather information for Florence, Italy.","tool_calls":[{"id":"0","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"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
@@ -54,10 +54,10 @@ interactions:
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}}}"
+ body: "\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758709848-gWoTgsh7yVVvHMhZITCD\",\"provider\":\"SiliconFlow\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758709848,\"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. That's quite hot! Stay hydrated and try to stay in the shade during peak sun hours.\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":155,\"completion_tokens\":30,\"total_tokens\":185,\"cost\":0.0001586,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000899,\"upstream_inference_completions_cost\":0.0000687},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
headers:
Content-Type:
- application/json
status: 200 OK
code: 200
- duration: 607.55975ms
+ duration: 1.618060625s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_baseten.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_baseten.yaml
deleted file mode 100644
index 8a55782c98123eafc3dcd280c8013b0c96b262cb..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_baseten.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 522
- 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"}],"provider":{"only":["baseten"]},"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-1758698596-14jsYmlm246nkvhhg8Og\",\"provider\":\"BaseTen\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698596,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"functions.weather:0\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\"}}]}}],\"system_fingerprint\":null,\"usage\":{\"prompt_tokens\":104,\"completion_tokens\":21,\"total_tokens\":125,\"cost\":0.0001149,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000624,\"upstream_inference_completions_cost\":0.0000525},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.530794209s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 754
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"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},"provider":{"only":["baseten"]}}'
- 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: '{"id":"gen-1758698598-WYCbOCUlOSa4hfFz9aaV","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion","created":1758698598,"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.","refusal":null,"reasoning":null}}],"system_fingerprint":null,"usage":{"prompt_tokens":145,"completion_tokens":13,"total_tokens":158,"cost":0.0001195,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000087,"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: 446.84325ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_chutes.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_chutes.yaml
deleted file mode 100644
index 2cde20425a724d009fb882799989ce8ab1936149..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_chutes.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 521
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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"}],"provider":{"only":["chutes"]},"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-1758698428-Tb8WQscWOBWUTZPuMlpo\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698428,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll check the weather for Florence, Italy for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"id\":\"functions.weather:0\",\"index\":0,\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence, Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":94,\"completion_tokens\":32,\"total_tokens\":126,\"cost\":0.00008436,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00003572,\"upstream_inference_completions_cost\":0.00004864},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 817.740458ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 818
- 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 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"}],"provider":{"only":["chutes"]},"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-1758698429-0b7ZJU7ECvyRdDlDNGPQ\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698429,\"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 (104°F). It's quite hot there right now!\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":147,\"completion_tokens\":23,\"total_tokens\":170,\"cost\":0.00009082,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00005586,\"upstream_inference_completions_cost\":0.00003496},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.329144167s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_deepinfra.yaml
deleted file mode 100644
index 6e93d8cfd9a80e2aad49a8e38167cbd775d74ad0..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_deepinfra.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 524
- 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"}],"provider":{"only":["deepinfra"]},"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-1758698444-PaNnooBF8aSEBWjGmDjH\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698444,\"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\":\"0\",\"function\":{\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\",\"name\":\"weather\"},\"type\":\"function\"}]}}],\"usage\":{\"prompt_tokens\":90,\"completion_tokens\":25,\"total_tokens\":115,\"cost\":0.000095,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000045,\"upstream_inference_completions_cost\":0.00005},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 746.27725ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 794
- 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":"0","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"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"}],"provider":{"only":["deepinfra"]},"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-1758698446-Km4bY63aWbltaIQrx2A7\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698446,\"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. That's quite hot! Make sure to stay hydrated and protected from the sun if you're planning to go outside.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":136,\"completion_tokens\":33,\"total_tokens\":169,\"cost\":0.000134,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000068,\"upstream_inference_completions_cost\":0.000066},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 606.296584ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_fireworks.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_fireworks.yaml
deleted file mode 100644
index 452f5850891bf04fab7f466cf6e9026b3d3122d2..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_fireworks.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 524
- 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},"provider":{"only":["fireworks"]}}'
- 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-1758698521-MEb1dW8qDG4rwSj5RgK1\",\"provider\":\"Fireworks\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698521,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll check the weather 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\":32,\"total_tokens\":129,\"cost\":0.0001382,\"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.00008},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 669.746084ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 820
- 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 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"}],"provider":{"only":["fireworks"]},"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-1758698523-HBKQq1iL0gdSRNfHxiOY\",\"provider\":\"Fireworks\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698523,\"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 avoid prolonged exposure to the sun if you're there.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":143,\"completion_tokens\":36,\"total_tokens\":179,\"cost\":0.0001758,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000858,\"upstream_inference_completions_cost\":0.00009},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 808.728208ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_groq.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_groq.yaml
deleted file mode 100644
index 63a9f78844696626a63e1b20c2c1dcd3d4c0a6c1..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_groq.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 519
- 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"}],"provider":{"only":["groq"]},"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: '{"id":"gen-1758703127-cQAlqB2QwbsHTzXD0law","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion","created":1758703127,"choices":[{"logprobs":null,"finish_reason":"tool_calls","native_finish_reason":"tool_calls","index":0,"message":{"role":"assistant","content":"I''ll check the weather for Florence, Italy for you.","refusal":null,"reasoning":null,"tool_calls":[{"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"index":0}]}}],"system_fingerprint":"fp_6e6ff3688b","usage":{"prompt_tokens":99,"completion_tokens":32,"total_tokens":131,"cost":0.000195,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000099,"upstream_inference_completions_cost":0.000096},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}'
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 285.761167ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 814
- 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 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"}],"provider":{"only":["groq"]},"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: '{"id":"gen-1758703128-uqBY7xQhvYFizffGd8fZ","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion","created":1758703128,"choices":[{"logprobs":null,"finish_reason":"stop","native_finish_reason":"stop","index":0,"message":{"role":"assistant","content":"The current weather in Florence, Italy is quite hot - it''s 40°C (104°F). Stay cool and hydrated if you''re going to be outdoors today!","refusal":null,"reasoning":null}}],"system_fingerprint":"fp_6e6ff3688b","usage":{"prompt_tokens":150,"completion_tokens":32,"total_tokens":182,"cost":0.000246,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00015,"upstream_inference_completions_cost":0.000096},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}'
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 347.6805ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_moonshotai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_moonshotai.yaml
deleted file mode 100644
index df99fe75cbcf772af8fea30992503a4ec1c06fb9..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_moonshotai.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 525
- 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"}],"provider":{"only":["moonshotai"]},"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-1758698547-zhuUj73xuKeX0GbT5hZU\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698547,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll check the weather in Florence, Italy for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"weather:0\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence, Italy\\\"}\"}}]}}],\"system_fingerprint\":\"fpv0_ec889fbb\",\"usage\":{\"prompt_tokens\":76,\"completion_tokens\":31,\"total_tokens\":107,\"cost\":0.0002462,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000912,\"upstream_inference_completions_cost\":0.000155},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 976.236542ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 801
- 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,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["moonshotai"]},"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-1758698548-8qc1vmWZOPc1J0RP9xsT\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698548,\"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 (104°F). That's quite hot! Make sure to stay hydrated and wear sunscreen if you're out and about.\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ec889fbb\",\"usage\":{\"prompt_tokens\":126,\"completion_tokens\":34,\"total_tokens\":160,\"cost\":0.0003212,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001512,\"upstream_inference_completions_cost\":0.00017},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 935.337167ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_moonshotai/turbo.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_moonshotai/turbo.yaml
deleted file mode 100644
index 6c3191c3bfe5d37c1a04aa55d197cd79b9d7598b..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_moonshotai/turbo.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 531
- 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"}],"provider":{"only":["moonshotai/turbo"]},"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-1758698617-TpAm9Btljkxaj5NKwOpi\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698617,\"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\":\"weather:0\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence, Italy\\\"}\"}}]}}],\"system_fingerprint\":\"fpv0_ec889fbb\",\"usage\":{\"prompt_tokens\":76,\"completion_tokens\":32,\"total_tokens\":108,\"cost\":0.0002512,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0000912,\"upstream_inference_completions_cost\":0.00016},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 982.419458ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 818
- 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":"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,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["moonshotai/turbo"]},"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-1758698619-wJJM5G6tRRXLKViV33mb\",\"provider\":\"Moonshot AI\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698619,\"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's quite hot there right now!\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ec889fbb\",\"usage\":{\"prompt_tokens\":127,\"completion_tokens\":20,\"total_tokens\":147,\"cost\":0.0002524,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001524,\"upstream_inference_completions_cost\":0.0001},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 741.652ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_novita.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_novita.yaml
deleted file mode 100644
index 56d88f55399589d86124c47765ad443853aba313..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_novita.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 521
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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"}],"provider":{"only":["novita"]},"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{\"id\":\"gen-1758698570-oZGYzV2Ovkn5icdBlra0\",\"provider\":\"Novita\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698570,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"I'll check the weather in Florence, Italy for you.\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"weather:0\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence, Italy\\\"}\"}}]}}],\"system_fingerprint\":\"fpv0_ef28f882\",\"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}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.98838025s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 797
- 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,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["novita"]},"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-1758698573-WRK0VYifiYsRDxPr3i0D\",\"provider\":\"Novita\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698573,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"The current weather in Florence, Italy is quite warm at 40°C (104°F). Consider staying hydrated and taking precautions if you're planning to be outdoors.\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"fpv0_ef28f882\",\"usage\":{\"prompt_tokens\":126,\"completion_tokens\":32,\"total_tokens\":158,\"cost\":0.0001556,\"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.00008},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.55410375s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_siliconflow.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_siliconflow.yaml
deleted file mode 100644
index 4d17d6075b659d0c3fb250d6dd9d1f5d33eea90c..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_siliconflow.yaml
+++ /dev/null
@@ -1,92 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 526
- 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"}],"provider":{"only":["siliconflow"]},"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{\"id\":\"gen-1758698459-dFKmPfeGtudFnv8hW6Dk\",\"provider\":\"SiliconFlow\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698459,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"functions.weather:0\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\"}}]}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":104,\"completion_tokens\":20,\"total_tokens\":124,\"cost\":0.00010612,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00006032,\"upstream_inference_completions_cost\":0.0000458},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.689778459s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 758
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"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"}],"provider":{"only":["siliconflow"]},"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":"SiliconFlow"}},"user_id":"user_2zMGmKqlf4zmAvL9snVImB1Z1ZQ"}'
- headers:
- Content-Type:
- - application/json
- status: 429 Too Many Requests
- code: 429
- duration: 3.37786425s
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 758
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"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"}],"provider":{"only":["siliconflow"]},"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-1758698466-nwTkBUek9zOgZ3LCjBqL\",\"provider\":\"SiliconFlow\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698466,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Right now it’s about 40 °C in Florence—very hot! Stay hydrated and seek shade or air-conditioning if you’re out and about.\",\"refusal\":null,\"reasoning\":null}}],\"system_fingerprint\":\"\",\"usage\":{\"prompt_tokens\":146,\"completion_tokens\":30,\"total_tokens\":176,\"cost\":0.00015338,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00008468,\"upstream_inference_completions_cost\":0.0000687},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 2.236100959s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_together.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_together.yaml
deleted file mode 100644
index 11dcd9093be8968bcd7b80d72a5ee402d02e9f80..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_together.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 523
- 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},"provider":{"only":["together"]}}'
- 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-1758698605-4GWVwkjiqfBR9eUVpeKa\",\"provider\":\"Together\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698605,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"tool_calls\",\"native_finish_reason\":\"tool_calls\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"\",\"refusal\":null,\"reasoning\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_s46a1jsh61wi8iquvxby0ygp\",\"type\":\"function\",\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\":\\\"Florence,Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":105,\"completion_tokens\":21,\"total_tokens\":126,\"cost\":0.000168,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000105,\"upstream_inference_completions_cost\":0.000063},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 832.583ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 774
- 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_s46a1jsh61wi8iquvxby0ygp","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_s46a1jsh61wi8iquvxby0ygp","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"}],"provider":{"only":["together"]},"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-1758698606-brd5WwcctChPma4qEjXz\",\"provider\":\"Together\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698606,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"It’s a hot 40°C in Florence right now—stay cool and hydrated!\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":180,\"completion_tokens\":18,\"total_tokens\":198,\"cost\":0.000234,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00018,\"upstream_inference_completions_cost\":0.000054},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 1.216442833s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_wandb.yaml b/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_wandb.yaml
deleted file mode 100644
index 0914bc49954d0195c55704b8d11827ffb49691b9..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_kimi-k2_wandb.yaml
+++ /dev/null
@@ -1,92 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 520
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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"}],"provider":{"only":["wandb"]},"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: 718.996542ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 520
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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"}],"provider":{"only":["wandb"]},"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-1758698630-gH1igWtWsNtwO1kQCwrK\",\"provider\":\"WandB\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698630,\"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\":[{\"id\":\"functions.weather:0\",\"type\":\"function\",\"index\":0,\"function\":{\"name\":\"weather\",\"arguments\":\"{\\\"location\\\": \\\"Florence,Italy\\\"}\"}}]}}],\"usage\":{\"prompt_tokens\":97,\"completion_tokens\":33,\"total_tokens\":130,\"cost\":0.00026295,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":64,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00013095,\"upstream_inference_completions_cost\":0.000132},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 374.12575ms
- - id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 826
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"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},"provider":{"only":["wandb"]}}'
- 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-1758698631-hMC8YxCtnYKsDe67PAXF\",\"provider\":\"WandB\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758698631,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"It's a hot day in Florence, Italy right now — the temperature is 40 °C (104 °F).\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":173,\"completion_tokens\":24,\"total_tokens\":197,\"cost\":0.00032955,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00023355,\"upstream_inference_completions_cost\":0.000096},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
- headers:
- Content-Type:
- - application/json
- status: 200 OK
- code: 200
- duration: 701.645584ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4.yaml
index 26fa43ad966b61d99563c95016f9dcd264cfb872..53ee75f78ebf94958ecb7d8939c99107f2d082e6 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4.yaml
@@ -24,33 +24,35 @@ interactions:
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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll get the current","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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather information 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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"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":[{"index":0,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01QNVf5N27PGZUy2hdgEBgQa","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":"{\"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"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":"\": "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\"loc"}}]},"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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"ation\": "}}]},"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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\"Floren"}}]},"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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"ce, Italy\"}"}}]},"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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"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":""},"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: {"id":"gen-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"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-1758709904-eWGMmroChtWuMqmxkutI","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709904,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"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}}}
data: [DONE]
@@ -59,15 +61,15 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 2.090023541s
+ duration: 2.348995459s
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 884
+ content_length: 893
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}'
+ 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_01QNVf5N27PGZUy2hdgEBgQa","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_01QNVf5N27PGZUy2hdgEBgQa","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
@@ -83,29 +85,41 @@ interactions:
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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":"The current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" in Florence, Italy is 40°","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s quite","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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" 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":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure to","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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay","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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" 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":"'s quite hot! Make","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" shade if","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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" you're","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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":" 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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"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-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"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: {"id":"gen-1758709907-rixSh0antqCG1LOkG9L6","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758709907,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":477,"completion_tokens":43,"total_tokens":520,"cost":0.002076,"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.000645},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -114,4 +128,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 2.122933083s
+ duration: 2.021869167s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_amazon-bedrock.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_amazon-bedrock.yaml
deleted file mode 100644
index 630723220087c1665d172e35a7e5acbfba3b82f4..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_amazon-bedrock.yaml
+++ /dev/null
@@ -1,119 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 585
- 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"}],"provider":{"only":["amazon-bedrock"]},"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-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"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-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"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-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_bdrk_013pCiWByeyQJP6mCFLWb3y3","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"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-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\"loca"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"tion\": \"F"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"lorence"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":",Ital"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"y\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"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-1758703523-RvVV9U7LMp8PSHwBqyFa","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703523,"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.730769417s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 923
- 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_bdrk_013pCiWByeyQJP6mCFLWb3y3","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_bdrk_013pCiWByeyQJP6mCFLWb3y3","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"}],"provider":{"only":["amazon-bedrock"]},"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-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":"The current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature in Florence, Italy is 40°","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":"C (104°F). That's quite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot! If you're planning to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":" visit or are currently there, make sure to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay hydrated and seek shade during the hottest parts of the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":" day.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703526-qwN9g0fFIE8IDXhx6MJO","provider":"Amazon Bedrock","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703527,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":476,"completion_tokens":54,"total_tokens":530,"cost":0.002238,"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.00081},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 2.336130292s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_anthropic.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_anthropic.yaml
deleted file mode 100644
index 47534a34afba0ed7a36b8fbfcc571ac9db5fba1c..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_anthropic.yaml
+++ /dev/null
@@ -1,121 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 580
- 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"}],"provider":{"only":["anthropic"]},"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-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll get","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":" the weather information for Florence, Italy for you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_01GJYtQvdcS73pmDMzbEaxxo","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"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-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"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-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\": \"Flore"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"nce,I"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"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-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"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-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"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-1758703468-PZBsTS61Zv8dC4gFmkdP","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703468,"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.985700666s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 908
- 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_01GJYtQvdcS73pmDMzbEaxxo","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_01GJYtQvdcS73pmDMzbEaxxo","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"}],"provider":{"only":["anthropic"]},"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-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":"The current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather in Florence, Italy shows","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":" a temperature of 40°C (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":"104°F). That's quite hot","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":"! Make sure to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay hydrated and seek","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":" shade if you're planning","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":" to be outdoors.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703472-eEvBb5ewHGcTPuquejTV","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703472,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":476,"completion_tokens":46,"total_tokens":522,"cost":0.002118,"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.00069},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 2.426378875s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex.yaml
deleted file mode 100644
index 1323ec155331730dd53704a34d7c8bb64c4759f9..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex.yaml
+++ /dev/null
@@ -1,125 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 584
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"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-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"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-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01KAtCYAhJncFvXBrmP8TvYj","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"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-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"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-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":": \"Flo"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"ren"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"ce,Italy\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"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-1758703419-91uUKXxCtEVQul9RRUiN","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703419,"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.208934459s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 922
- 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_01KAtCYAhJncFvXBrmP8TvYj","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_01KAtCYAhJncFvXBrmP8TvYj","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"}],"provider":{"only":["google-vertex"]},"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-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather in Florence, Italy is 40","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"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-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s quite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot! It","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":" very","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":" warm day in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703422-TIBE56DbHfmidVSPDzKu","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703423,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":476,"completion_tokens":34,"total_tokens":510,"cost":0.001938,"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.00051},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 2.153385584s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex/europe.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex/europe.yaml
deleted file mode 100644
index ab1492ae55eb0de6f04a73ac87a65ed109b37a72..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex/europe.yaml
+++ /dev/null
@@ -1,137 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 591
- 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"}],"provider":{"only":["google-vertex/europe"]},"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-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"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-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"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-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_018gxNZKGPB561WXyjqCZDPA","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"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-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"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-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"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-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":" \"Fl"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"orence"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":",I"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"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-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"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-1758703498-fM9ZsDQAfy71vyjAQGOF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703498,"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.036525917s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 929
- 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_018gxNZKGPB561WXyjqCZDPA","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_018gxNZKGPB561WXyjqCZDPA","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"}],"provider":{"only":["google-vertex/europe"]},"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-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":"The current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" in Florence, Italy is 40°","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"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-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s quite hot","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":"! If","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" you're planning to visit or","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" are currently","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" there","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":", make","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated and seek","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" shade during the hottest parts","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":" of the day.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703501-F3TPZJvH25uBXpA02kYe","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703501,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":476,"completion_tokens":54,"total_tokens":530,"cost":0.002238,"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.00081},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.330429834s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex/global.yaml
deleted file mode 100644
index c862753431696de9f29b4b30440ec09a1c817618..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_claude-sonnet-4_google-vertex/global.yaml
+++ /dev/null
@@ -1,133 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 591
- 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"}],"provider":{"only":["google-vertex/global"]},"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-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll get","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":" the current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather information","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"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-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_018YAYcRRh2FsSEMXgs9sADK","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"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-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"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-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":" \"Flore"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"nce, Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"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-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"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-1758703441-x2a6sIg6KNtgAe47OkdJ","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703441,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"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}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.352287166s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 938
- 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_018YAYcRRh2FsSEMXgs9sADK","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_018YAYcRRh2FsSEMXgs9sADK","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"}],"provider":{"only":["google-vertex/global"]},"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-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":"The current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" in Florence, Italy is 40°","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"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-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s quite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot! Make","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated and seek","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" shade if","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" you're planning to be","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":" out","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":"doors.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758703443-tUSMqvyVWt5awRRvXeqm","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758703443,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":477,"completion_tokens":43,"total_tokens":520,"cost":0.002076,"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.000645},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 937.009042ms
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
index abce763d52b2547dc072e015c054f3ddb2db3bcb..313102d2c466536c9279125bd8e3a45fec7d0275 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_deepseek-chat-v3.1-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_deepseek-chat-v3.1-free.yaml
@@ -24,27 +24,27 @@ interactions:
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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll check","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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_839f","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-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"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: {"id":"gen-1758709961-Pa2LV4AqJywjfKzcDE5c","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709961,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":160,"completion_tokens":27,"total_tokens":187,"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]
@@ -53,15 +53,15 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 4.474706084s
+ duration: 446.60825ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 833
+ content_length: 822
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}'
+ 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":"call_839f","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_839f","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
@@ -77,33 +77,67 @@ interactions:
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-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"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-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"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-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather 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":" temperature in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"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":" Florence,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"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":" Italy is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently **","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-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"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":"40°","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"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":"C.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" (104","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-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"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":" quite warm","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":"F).","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-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" That'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":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite hot","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":""},"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: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":"! It","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" appears","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" be a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" very warm","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" day there","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":". You","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" might want","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" to stay","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" seek shade","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" if you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":"'re planning","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":" be outdoors","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+ data: {"id":"gen-1758709965-DIoUrQPblLedfSbK10sT","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758709965,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":192,"completion_tokens":51,"total_tokens":243,"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]
@@ -112,4 +146,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 3.8388925s
+ duration: 1.3195515s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_deepseek-chat-v3.1-free_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_deepseek-chat-v3.1-free_deepinfra.yaml
deleted file mode 100644
index 46523f5659c6ef171ccc43f2d3c3a15a8b152f7a..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_deepseek-chat-v3.1-free_deepinfra.yaml
+++ /dev/null
@@ -1,133 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 587
- 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"}],"provider":{"only":["deepinfra"]},"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-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll check","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"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-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"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-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_1747","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"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-1758704095-gVWbFkzRub21BvJrpBdL","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704095,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":160,"completion_tokens":27,"total_tokens":187,"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: 949.799791ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 856
- 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":"call_1747","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_1747","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"}],"provider":{"only":["deepinfra"]},"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-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"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-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"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-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":"40°","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":"C.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"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-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite hot","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" there!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" You","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" might want","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" to stay","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" seek shade","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" if you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":"'re planning","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":" be outdoors","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758704099-c4uoTxChRtWJGtMjfaVK","provider":"DeepInfra","model":"deepseek/deepseek-chat-v3.1:free","object":"chat.completion.chunk","created":1758704099,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":192,"completion_tokens":37,"total_tokens":229,"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: 866.230792ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash.yaml
index de34fd52cdaeefe42195a9b2ef77681cb9828700..c4f9a1a9c0850c5512d6d601f8da19f9882bd230 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash.yaml
@@ -24,9 +24,9 @@ interactions:
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-1758709945-z3I8wuODPUkFvoYAm94e","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709945,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_eSe4zRv6CB7jWK5vKM1u","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"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: {"id":"gen-1758709945-z3I8wuODPUkFvoYAm94e","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709945,"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.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}}}
data: [DONE]
@@ -35,15 +35,15 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 621.308333ms
+ duration: 885.527292ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 805
+ content_length: 811
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}'
+ 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_eSe4zRv6CB7jWK5vKM1u","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_eSe4zRv6CB7jWK5vKM1u","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
@@ -59,11 +59,11 @@ interactions:
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-1758709946-fiIQs2CzPcdrntAxPyCf","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709946,"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-1758709946-fiIQs2CzPcdrntAxPyCf","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709946,"choices":[{"index":0,"delta":{"role":"assistant","content":", Italy 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: {"id":"gen-1758709946-fiIQs2CzPcdrntAxPyCf","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758709946,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":58,"completion_tokens":13,"total_tokens":71,"cost":0.000011,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000058,"upstream_inference_completions_cost":0.0000052},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -72,4 +72,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 1.3302435s
+ duration: 515.069041ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash_google-ai-studio.yaml
deleted file mode 100644
index c7fbb05974bfa1decbe7b15918ad952b1144a10d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,75 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 589
- 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"}],"provider":{"only":["google-ai-studio"]},"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-1758703931-fLH0HcaxrY4SZ4NQ6tWw","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703931,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_LVdXlqzFjnkcE0NQt7y4","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703931-fLH0HcaxrY4SZ4NQ6tWw","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703931,"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.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}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 660.108041ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 852
- 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_LVdXlqzFjnkcE0NQt7y4","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_LVdXlqzFjnkcE0NQt7y4","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"}],"provider":{"only":["google-ai-studio"]},"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-1758703931-bgiUu4SqXlRVJMRRTs9D","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703931,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703931-bgiUu4SqXlRVJMRRTs9D","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703931,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s 40 C in Florence, Italy.\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703931-bgiUu4SqXlRVJMRRTs9D","provider":"Google AI Studio","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703931,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":57,"completion_tokens":13,"total_tokens":70,"cost":0.0000109,"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.0000052},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 532.710958ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash_google-vertex.yaml
deleted file mode 100644
index 4350c7f104fb24a6ae077a31f29333ad23891469..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.0-flash_google-vertex.yaml
+++ /dev/null
@@ -1,75 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 586
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703940-DXian3wpzFWByfegIT9z","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703940,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_n9f6uGvWGqhx8tjnmWp0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703940-DXian3wpzFWByfegIT9z","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703940,"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.000006,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000042,"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.394811041s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 843
- 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_n9f6uGvWGqhx8tjnmWp0","function":{"arguments":"{\"location\":\"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_n9f6uGvWGqhx8tjnmWp0","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},"provider":{"only":["google-vertex"]},"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-1758703942-YRiZ3CR5l6JctjRyrGlG","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703942,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703942-YRiZ3CR5l6JctjRyrGlG","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703942,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s 40 C in Florence.\n"},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703942-YRiZ3CR5l6JctjRyrGlG","provider":"Google","model":"google/gemini-2.0-flash-001","object":"chat.completion.chunk","created":1758703942,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":55,"completion_tokens":11,"total_tokens":66,"cost":0.00001485,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00000825,"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.7370605s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash.yaml
index f98ef85963d0a5de5d8893dfbf40ba8e7f4c9e4b..c898cdb950aee38854c1022255f81c3fb1db5a04 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash.yaml
@@ -24,9 +24,9 @@ interactions:
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-1758709938-NHkZaJSNsxQQNnAzqO5H","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709938,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_xBkaIsEkug4mfh3X04ps","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: {"id":"gen-1758709938-NHkZaJSNsxQQNnAzqO5H","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709938,"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]
@@ -35,7 +35,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 806.809584ms
+ duration: 828.459833ms
- id: 1
request:
proto: HTTP/1.1
@@ -43,7 +43,7 @@ interactions:
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}'
+ 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_xBkaIsEkug4mfh3X04ps","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_xBkaIsEkug4mfh3X04ps","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
@@ -59,11 +59,11 @@ interactions:
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-1758709939-bRUUybEXMhu35l88hMQ0","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709939,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","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-1758709939-bRUUybEXMhu35l88hMQ0","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709939,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather in Florence, Italy is 40 degrees Celsius.","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: {"id":"gen-1758709939-bRUUybEXMhu35l88hMQ0","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758709939,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":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}}}
data: [DONE]
@@ -72,4 +72,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 902.870834ms
+ duration: 651.246708ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-ai-studio.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-ai-studio.yaml
deleted file mode 100644
index ec0be56e073e76f5d5fca7b31d1ad1169259c391..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-ai-studio.yaml
+++ /dev/null
@@ -1,75 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 585
- 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"}],"provider":{"only":["google-ai-studio"]},"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-1758703829-uzmqaZrYw58Bw3GpcfSs","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703829,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_GRiNHWvnqr6phmz2EHzE","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703829-uzmqaZrYw58Bw3GpcfSs","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703829,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":54,"completion_tokens":15,"total_tokens":69,"cost":0.0000537,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000162,"upstream_inference_completions_cost":0.0000375},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 927.46375ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 848
- 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_GRiNHWvnqr6phmz2EHzE","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_GRiNHWvnqr6phmz2EHzE","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"}],"provider":{"only":["google-ai-studio"]},"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-1758703830-Kk0wyqI4L1J39hm0vjfz","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703830,"choices":[{"index":0,"delta":{"role":"assistant","content":"The weather in Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703830-Kk0wyqI4L1J39hm0vjfz","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703830,"choices":[{"index":0,"delta":{"role":"assistant","content":", Italy is 40 C.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703830-Kk0wyqI4L1J39hm0vjfz","provider":"Google AI Studio","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703830,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":102,"completion_tokens":12,"total_tokens":114,"cost":0.0000606,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000306,"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: 609.687583ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-vertex.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-vertex.yaml
deleted file mode 100644
index 951dcce80d21d0ec90e3fa6ce89c801c71649ccc..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-vertex.yaml
+++ /dev/null
@@ -1,75 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 582
- 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"}],"provider":{"only":["google-vertex"]},"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-1758703836-M3HO51jlqZgtOcH54tqp","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703836,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_zRxyTyWOpxyBIIsrGNQb","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703836-M3HO51jlqZgtOcH54tqp","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703836,"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: 731.052667ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 845
- 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_zRxyTyWOpxyBIIsrGNQb","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_zRxyTyWOpxyBIIsrGNQb","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"}],"provider":{"only":["google-vertex"]},"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-1758703837-IoFAnaoBhObldcW3tg0m","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703837,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758703837-IoFAnaoBhObldcW3tg0m","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703837,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather in Florence, Italy is 40 degrees Celsius.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703837-IoFAnaoBhObldcW3tg0m","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703837,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":55,"completion_tokens":13,"total_tokens":68,"cost":0.000049,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000165,"upstream_inference_completions_cost":0.0000325},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 697.874042ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-vertex/global.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-vertex/global.yaml
deleted file mode 100644
index 15193fd585ed1e9ec194f9c42eebce870e4aca29..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gemini-2.5-flash_google-vertex/global.yaml
+++ /dev/null
@@ -1,75 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 589
- 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"}],"provider":{"only":["google-vertex/global"]},"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-1758703821-dZu7LbsgRUCmK0Ufdqtc","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703821,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"tool_0_weather_P63yrD3HjU0ANCb6Ms68","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703821-dZu7LbsgRUCmK0Ufdqtc","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703821,"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: 815.136459ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 852
- 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_P63yrD3HjU0ANCb6Ms68","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"tool_0_weather_P63yrD3HjU0ANCb6Ms68","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"}],"provider":{"only":["google-vertex/global"]},"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-1758703822-Sg3pNqQpQCaNrz79Pjrb","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703822,"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-1758703822-Sg3pNqQpQCaNrz79Pjrb","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703822,"choices":[{"index":0,"delta":{"role":"assistant","content":" is 40 degrees Celsius.","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"STOP","logprobs":null}]}
-
- data: {"id":"gen-1758703822-Sg3pNqQpQCaNrz79Pjrb","provider":"Google","model":"google/gemini-2.5-flash","object":"chat.completion.chunk","created":1758703822,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":58,"completion_tokens":13,"total_tokens":71,"cost":0.0000499,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000174,"upstream_inference_completions_cost":0.0000325},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 715.936ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_glm-4.5.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_glm-4.5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..36326ab02fe0e954eb37e8876970e6f15d39c7a4
--- /dev/null
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_glm-4.5.yaml
@@ -0,0 +1,275 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 533
+ host: ""
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"z-ai/glm-4.5","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-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking","reasoning_details":[{"type":"reasoning.text","text":" asking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.text","text":" get","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter","reasoning_details":[{"type":"reasoning.text","text":" parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" required","reasoning_details":[{"type":"reasoning.text","text":" required","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" has","reasoning_details":[{"type":"reasoning.text","text":" has","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specified","reasoning_details":[{"type":"reasoning.text","text":" specified","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flo","reasoning_details":[{"type":"reasoning.text","text":"Flo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"rence","reasoning_details":[{"type":"reasoning.text","text":"rence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" exact","reasoning_details":[{"type":"reasoning.text","text":" exact","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" value","reasoning_details":[{"type":"reasoning.text","text":" value","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided","reasoning_details":[{"type":"reasoning.text","text":" provided","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" by","reasoning_details":[{"type":"reasoning.text","text":" by","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_515d3aab515e4b1c852510ce","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence,Italy\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"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-1758710047-XiHmPZoovEH3dUaSSJTf","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710047,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":178,"completion_tokens":76,"total_tokens":254,"cost":0.00019838,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00007298,"upstream_inference_completions_cost":0.0001254},"completion_tokens_details":{"reasoning_tokens":67,"image_tokens":0}}}
+
+ data: [DONE]
+
+ headers:
+ Content-Type:
+ - text/event-stream
+ status: 200 OK
+ code: 200
+ duration: 1.045373875s
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 802
+ host: ""
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\n\n","tool_calls":[{"id":"call_515d3aab515e4b1c852510ce","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_515d3aab515e4b1c852510ce","role":"tool"}],"model":"z-ai/glm-4.5","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-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked about","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the weather","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in Florence","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", Italy","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and I","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the weather","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function with","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location \"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Florence","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",Italy","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\". The","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function returned","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"40","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" C\",","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which indicates","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the current","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature is","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" degrees Celsius","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". \n\n","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"I should","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide this","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information to","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the user","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in a","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear and","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" helpful way","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":" current weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":" in Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":", Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":" is ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"40°C","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+ data: {"id":"gen-1758710050-n1tUsF1phNSWggSYnA8M","provider":"Parasail","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758710050,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":206,"completion_tokens":76,"total_tokens":282,"cost":0.00028114,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00012154,"upstream_inference_completions_cost":0.0001596},"completion_tokens_details":{"reasoning_tokens":74,"image_tokens":0}}}
+
+ data: [DONE]
+
+ headers:
+ Content-Type:
+ - text/event-stream
+ status: 200 OK
+ code: 200
+ duration: 1.123029792s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5.yaml
index a9395156c04395877390f4f554361841bf80244e..6d0c21e665b10189932b6509529d4869bbb7de7d 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5.yaml
@@ -24,31 +24,227 @@ interactions:
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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" gather","reasoning_details":[{"type":"reasoning.summary","summary":" gather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" info","reasoning_details":[{"type":"reasoning.summary","summary":" info","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" There's","reasoning_details":[{"type":"reasoning.summary","summary":" There's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" string","reasoning_details":[{"type":"reasoning.summary","summary":" string","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Since","reasoning_details":[{"type":"reasoning.summary","summary":" Since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" we","reasoning_details":[{"type":"reasoning.summary","summary":" we","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calling","reasoning_details":[{"type":"reasoning.summary","summary":" calling","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" directly","reasoning_details":[{"type":"reasoning.summary","summary":" directly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" best","reasoning_details":[{"type":"reasoning.summary","summary":" best","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Using","reasoning_details":[{"type":"reasoning.summary","summary":" Using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wouldn't","reasoning_details":[{"type":"reasoning.summary","summary":" wouldn't","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" necessary","reasoning_details":[{"type":"reasoning.summary","summary":" necessary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" After","reasoning_details":[{"type":"reasoning.summary","summary":" After","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" present","reasoning_details":[{"type":"reasoning.summary","summary":" present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" returned","reasoning_details":[{"type":"reasoning.summary","summary":" returned","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" by","reasoning_details":[{"type":"reasoning.summary","summary":" by","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Since","reasoning_details":[{"type":"reasoning.summary","summary":" Since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simulated","reasoning_details":[{"type":"reasoning.summary","summary":" simulated","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.summary","summary":" function","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wait","reasoning_details":[{"type":"reasoning.summary","summary":" wait","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" before","reasoning_details":[{"type":"reasoning.summary","summary":" before","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" proceeding","reasoning_details":[{"type":"reasoning.summary","summary":" proceeding","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo08j65DE31jaXBbBCTWvrKf_L_89WtE4kzYp8Gh-Zucztj8tVVdN7ZHfKkI_zBXSNNkDKus87WYs2BCWfWicPdzIHYPZBl_gcpBidKhU5rGmsvfOOxluzoI6Z6v8GhnfXa8vR2Y9sT6wFzNXKoWIBqgp5MaS9esw8wThz4I9hBCdcvEz0XRNtDvSmMnlQV5CT4gIP4gEJODAY7QROdahq2aPI8Ub1iM_i9l0OH45XtLupchPdmMu08mzTU19p-h8snVh2sSE8Z1K0CGqCzMiWYsXzOVzj-YEAk8B-AZZxzM_6qDEFbFtOELHLzxmPOxCyzHfuutjlBG00g5NEiI8jldyjk_xdwsAh931BJRMCJtRAAfqqrKXUItlVratEOKeSS5NPbJrUNIWz8FfdnRQHvOQqbrQvJH9WVmoG22Q4e6IO6wRl3eXJKFzuwHHXIRimR-f1bGfK--YsDuzEeDWq_r3KnVow20NgPrC6wXaoIJ3vgmx6hzvQhxSuyZkRCfSOiA1H8llKOLwn3xEHtQ3fkPkTUiif1k402MnPiST-eoH1ayzyeKORdiCV_hQj3xDBEPMzATEicNB-6i1WZ7iPbNfNORlRH3u9JOqNXECiX2wYCKdLL0gOSWbLUSbLRs8O4cRmMP4YuJK0RmqIGrdUrxrXCDKDnVv0RV5p37cvMS8l0ITodrwqjdPjbbGE0Ax4VuhpzdEDe1dKjU7EaH4IzPwgDqBsb-1lOag1a1Z2RCJu767Uw0s4XeuOHA0Bqh3q6Sou7agwsISfIj2y0XukoPGmOjy8bwDPs44HEeloG9bULgLBKAAfunBl4naUknQ-wiTDaje5FXeQ-B7AhQqsnRStJ1FdYVcVxoqn3-H8AEt52yyV2OvuXk2CmcUUez0rakstA8fZra9BymtjXwvvZCjGFVPbZvGoATENvcJH40PC7Iyz6h6twKrN-p_KmDY7fzpUohd7V2ku-nCRAV95WN_oUHtlDWdxPqm605OI207kyq5DBQpTlFahWLcGURY6kwRlLCiyV16Trf-zaW_2vEkv-d0_B2xZnIh7IdyLkMgEqZ1448_rF_FhrNABJyR59txlyG8GtY-XCNrXXEvEsWNpJEJLFj9TIfqJAnNvMHXZM8VRgmNSVky6cDAlqKFdm_CMK7qbviexv_I6xHm9Es7-gx0Em7hEE1hNzsWWQ4UuYa56_a5PpKgxEGafYiBhS2gXYxhZNJ8D3ujvLHN5ylmFhL9eE-TgBlsQL7BIDzZXyKrpYL8VOt1ujA9ygq_MSeJloclYlk0Z-PeyLj3IfXLI8Bovu9eHdK8Y0TE7GoVdHMQ9frFkovaIWvBVdEf542otEAW6_YjkBQD_vZjQ4Z7m0sSRWSVzJMtC7W3Mf99EtMX0Ij5bziarfN94sNaB1jtgIdwOrHk3vDPx5BMnRJlQeylEzzHV7LDjqCzfHHHwRRve9MFQr2x5B0aBKe9ubI14BztPdG2CR-0fVHEszwDgKtwQn2wDgxnwtHCVLFRf7Hd680zQBDqV1ZtMuATCtU1rEJR0hvmDUBjZXjW6rDpFy8JhIcGQoxkxyJAk670ZJQULznIv8eUdiXHZ3-aCly5zeeOtdbiFIbd_iGayiAZYLeQuPkBbDAlIXW6IregnW6ieH2cwGty45zvwdz8OexPy","id":"rs_68d3c8f4ee3c8195b2eb413489c93dc403c18c556c6d1f14","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_53F5Wfhdi4paefTbQc5dftUM","index":1,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"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-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]}
+
+ data: {"id":"gen-1758710004-CN27qOGtula0CCSuqBvM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710004,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":63,"completion_tokens":86,"total_tokens":149,"cost":0.000469375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000039375,"upstream_inference_completions_cost":0.00043},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}}
data: [DONE]
@@ -57,7 +253,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 898.414834ms
+ duration: 674.226834ms
- id: 1
request:
proto: HTTP/1.1
@@ -65,7 +261,7 @@ interactions:
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}'
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_53F5Wfhdi4paefTbQc5dftUM","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_53F5Wfhdi4paefTbQc5dftUM","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
@@ -81,221 +277,229 @@ interactions:
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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Returning","reasoning_details":[{"type":"reasoning.summary","summary":"**Returning","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI've","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI've","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" called","reasoning_details":[{"type":"reasoning.summary","summary":" called","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"**\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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"°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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" think","reasoning_details":[{"type":"reasoning.summary","summary":" think","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" return","reasoning_details":[{"type":"reasoning.summary","summary":" return","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" info","reasoning_details":[{"type":"reasoning.summary","summary":" info","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.summary","summary":" also","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" consider","reasoning_details":[{"type":"reasoning.summary","summary":" consider","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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"°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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" give","reasoning_details":[{"type":"reasoning.summary","summary":" give","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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" details","reasoning_details":[{"type":"reasoning.summary","summary":" details","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" might","reasoning_details":[{"type":"reasoning.summary","summary":" might","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" advise","reasoning_details":[{"type":"reasoning.summary","summary":" advise","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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stay","reasoning_details":[{"type":"reasoning.summary","summary":" stay","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hydrated","reasoning_details":[{"type":"reasoning.summary","summary":" hydrated","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"°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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" quite","reasoning_details":[{"type":"reasoning.summary","summary":" quite","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hot","reasoning_details":[{"type":"reasoning.summary","summary":" hot","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" keep","reasoning_details":[{"type":"reasoning.summary","summary":" keep","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" concise","reasoning_details":[{"type":"reasoning.summary","summary":" concise","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" correct","reasoning_details":[{"type":"reasoning.summary","summary":" correct","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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" could","reasoning_details":[{"type":"reasoning.summary","summary":" could","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Celsius","reasoning_details":[{"type":"reasoning.summary","summary":" Celsius","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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Fahrenheit","reasoning_details":[{"type":"reasoning.summary","summary":" Fahrenheit","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" 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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" final","reasoning_details":[{"type":"reasoning.summary","summary":" final","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" around"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.summary","summary":" simple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
- data: {"id":"gen-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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct","reasoning_details":[{"type":"reasoning.summary","summary":" direct","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":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo08j_0pKHheYjpmLWe0n0BeOdrvav6SUtWKbiGXtXm1kuwEZkHavoJqCKObF7Zmz3SSBdo-gFPIs_3kgIhwOUuuCZQRqjx8JsP-T0YdirZKkDJsf3PBARB73o6GLYULLlgY1-m5rPCbchnbOhzSCcNRJ5W2mVm2KNui0-tR8RUJUurq8rCa4-K4ZJdH0yDZjbtfe08kqFHeVGkB--BVDxahx7SUMHAlxCaRqJvdr6AhRVtyUTspA0GWbLGDQSIdTgIwehDuaB1VFDd8jjOteuRHEMNjfLXMG_yutfk4V2R6RD0zH35xVfRkaA_sW0h6VByutJoDQY6gpfbrWnmNugZfTP18wMT2kv4i01g0sP7QmlzPUXzCY6TKWTA65d_V2z1DWFt1lAZp_6ZNCyXswj5tSiOis-XJIcDGmWBQfCeoPSj4AxGaWJvhN98bEuuJhnKwhYisjqI_rNRXq8pr5U6pR0jjRgviGgVDls3WvEQRmzbFw1J2CDCyD5PxFTZnxniVGcgg7vvt0vEp-_l_MxuCqZ4rcYPjbuihxPTfnK5Xrtof0G_-nbx7FqmROlxaez6KhzxjmPW_j6jbbAW4VuACf4M0zYcaOjykqzBzI3yKQ1uM4tdmBYNKzmq2xyb54IzaQuzx05lak3lrS-lUxcp_TD82dvwkdLNqgjBAuZBb6bYGWwHofvrpeXJ54MUQZln-bR2bx7ak7OPtV6OvJQK_5zHJ6Ohx_Ap99Eo_Vi6dHcT53dsSUXuBDQDfHO_dRqNsnxNXMr-Rz9fNqKOmuYoq9Zs8d7KaPPwc7jhhyFPkERRCPLl0DDn8HkIy2tCWPTYCUUiuchKPoUX4nKywW5QdAg-ZCrBNbs_2p8-DrkPv7YjRExA-gfG9frxraic-D5Jb2Se2eFPqC69hdUutJNJNlasBNQhtqlWWcKCEzGFeLDyZdX3r68u9h-5pIq4Sr9TsKxB91a2VhTbzV5ZNVtIG7c5yKJ2kqjT7bV9Nuo1U-I4DvKhZXCYf2dv0Ip1WtkJFd0G23j_PDzyorSrq-ZB7Cf-OsDA1EhmtA283LNi7kg_RwNzHeIQ-Ia1I_XqtCBx-yBM8G7enomeJ1qfmnIAiC-q-OZCHJZcusErouqz4QFYoXR7pypUoP9HnX5VCxltnaDzOuczGIO2JxqshIHDxRdiGWD4hzoOokfNDZysmc1BrHxbqeF1kSQLXt09p1oseU1Vz1lTHo-PL-nBVr9ho26pS3ARo-VXXSHCo2XmIFLwfXAQJll_2geCeC0k4zc7Jii7uZpukjC9oO_qctnWo7NmXWb8E8yCTxVgRHKJHzhddE-4hAMJgit-XaeDYA2KN_sbJRF394YriVnM1vTRWVpMOHP585jxF_a5VFqW0Zr1ws0rfrTPegRv4e9hUGxJRkSHY6mn93vr-UCb27vZ4Yf31zEfuSgcRXcPHIwH6jZOeTz5pS3szUHfgE9w9XgsWcItg4Af2-91XNoYvEVppQFPlzVhd9a8UCr3ehH4y2lTM2-2TdAZ8X7SfJ2BE4Te1Cy4zRBu6C0FMfrxYL0rNL8uEq4d5bWUX6y39YoVfioMhDZUxLwumA7Ty8nD2L3zp8_LOHdiFWt5r11vQjNo403CGiVUKBwrFmdP2lIklFUOWHBvi3D9no24qvMlXSueM_ps6ZZumFfucpBsu1DfyF5UFNhME-UxE6GP3KhMohgVKh8Cu0up53CAg0R_KOyfhyfjo2MDWDSYa9fpTPcIQDY1TYORjbqZvFJOxnuTIqSZL6SFdMIPeuxS_BSWaSr-VTkZvkx3rDU9v-iG_6tE41CK8XfXoZMHB_03_0VSVCx5ydCguu_RdqCPk_m-Qs-So-AjXxb88SMJ0Abg5jje8-RIcwElDSu0PlX8ASf6it-Wps=","id":"rs_68d3c8fc40688190b68fb171224340e6","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":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":" about"},"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" Would"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" like"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" a"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" short"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" forecast"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" or"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" tips"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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":" dealing"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+ data: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":" Stay"},"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":" cool"},"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"},"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"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: {"id":"gen-1758710011-SdFy8fHDk9P1VHu9Iuh1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758710011,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":92,"completion_tokens":155,"total_tokens":247,"cost":0.0008325,"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.000775},"completion_tokens_details":{"reasoning_tokens":128,"image_tokens":0}}}
data: [DONE]
@@ -304,4 +508,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 1.331511542s
+ duration: 758.92475ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_azure.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_azure.yaml
deleted file mode 100644
index 6c0abe211a25d75a2e99ccae6153bafb11a95db7..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_azure.yaml
+++ /dev/null
@@ -1,731 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 574
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" check","reasoning_details":[{"type":"reasoning.summary","summary":" check","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" There's","reasoning_details":[{"type":"reasoning.summary","summary":" There's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.summary","summary":" function","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" called","reasoning_details":[{"type":"reasoning.summary","summary":" called","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" For","reasoning_details":[{"type":"reasoning.summary","summary":" For","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" action","reasoning_details":[{"type":"reasoning.summary","summary":" action","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instead","reasoning_details":[{"type":"reasoning.summary","summary":" instead","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.summary","summary":" of","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" running","reasoning_details":[{"type":"reasoning.summary","summary":" running","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiple","reasoning_details":[{"type":"reasoning.summary","summary":" multiple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Once","reasoning_details":[{"type":"reasoning.summary","summary":" Once","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" present","reasoning_details":[{"type":"reasoning.summary","summary":" present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearly","reasoning_details":[{"type":"reasoning.summary","summary":" clearly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simply","reasoning_details":[{"type":"reasoning.summary","summary":" simply","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let's","reasoning_details":[{"type":"reasoning.summary","summary":" Let's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" proceed","reasoning_details":[{"type":"reasoning.summary","summary":" proceed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.summary","summary":" function","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" now","reasoning_details":[{"type":"reasoning.summary","summary":" now","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo0727p0mlw77V_zXpodNVYg9yFjHbJcfiIfSy1USN1CharF9oB0ULFN-aORBjFmF3RFZKi2AzdqpzW7MaB8UGNdMnfn7XwoSd6WfMhsKuzq-08HT0V9aVbSUqNBpHNQgM7SZrB2hEpc_uB5rS76zyG80O__xT-24w1Z9PN2zFP9DQN2LdF4RDMy43V5QvRpb3Gi70S9r5OzT_x64xFqDQfb1VnRPB2iMyA_Uu0QDc_iCCU_MGDfXPn0T6PhSaNzPkOMrKhYvj6IhA1MsurzDbfWAqaIa2wF-DgVJQpvuxyCdLhib00MexvODBMiSzdClFnbZjfr_4zdl8Rib1vTEyp-GIZ3clQEcxYDqqgUhnH1irXKZXYgZT196fzetIc4gE2ZDBpLdlF1dg7E7rMN5F4wGFfFw50pkwJr4NBr9JiL25W1kkwyTZgF8CGQgLDqmi9-XGAD4d2_d3epGxYCZo9asE8RmIllRQUOx-5-21wMsBauWcQe3-4VaHuMxzWlNnWj3-JUjt0jUfC6PS6A9MhhAdlesh68WeGqoE8jJavpVMNtT8JtFUaTTn4EOdzAyKFOMfdIycEK3yP1gQifYcOORTjb7Qht85_hlh7cOrPs2Qqm6_DlgXsbfe19zC60Fn4trnAGZO2a4DdqO_YEwCrF6tyztrG8H3wpYIMBO19r-qCAAEtQ6vGVR84tkr-ZArKHCjDUPHy4tedQOj_q57C9jt3aL7e-P2HygP0QVGIzNtQcV5qUTEhNfeWsoEZ9ImJmSPKQtJ2DIiDZ7E9lRQM6wOEAk_CTrZjUAASlmfcALclSS5vUf9_Kcf73iy3DHwcv3ZlWmt3zrF01uO2smk6q4-2uxFmQJJYhaER7PJSx_IqdAvUpjntMnJI4Ombor5ddkH52cZGY90j45YF7duvCsAqs7kcCTQaMYRKd1EZKrHqNORWiB6hZa5R3SqwSoRg49ce6C9jNZAsCNsU_nR4QNU-mv0YWAMGnu4zC2j6Eb7uHvC6bO_6xEiPzewJXqcxInQ4VSKH2qMOW94shrUK-riFkOqgxhry5DzIVlSgkp7Qcji0QeooiazMkrTOdmx5tfyVjX6u3QCZ5NuZLEqJHfrnfx9DijKZOcccMy9JuImPKkJ-IGLkae3ykisSJF1jaT3PDH9bZTokp0MTBy0hUg7fxHR16CuxPZA2gl1SeSctqkNDCx9wJbxvuwhLlX_UFJOXMQn_iJT8PYhfVz2uTr3KUxAqUkOqpdms2JuMnQRBC2Tpd4ubT-Ci2PTZBVCGLgzn0uNwAMuIf0VlSOqOpLXRGqRHlyF9fBEAF9DmtY7HYZItcVJiDPxmxaH24r7Q-tjN6srh5Jz5pkT-n9vPwXEvIay5z1zNa66R17rKvDqIlB4sbkH4NImEbitdpuffZNf--TtryfFsjvm1M_XZ3PMgz5VC2QAEC8oauDVsbeXU5o=","id":"rs_68d3bdb8cee88194979fe93538f0a26a03a190e214eed889","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_2ALLh7WlLxw9FbZya4iZ2SeO","index":1,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"Flor"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"ence"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":" Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707128-vN9gP7b9cdoWg9P1PUZ9","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":63,"completion_tokens":86,"total_tokens":149,"cost":0.00093875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00007875,"upstream_inference_completions_cost":0.00086},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 968.873708ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 826
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_2ALLh7WlLxw9FbZya4iZ2SeO","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_2ALLh7WlLxw9FbZya4iZ2SeO","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["azure"]},"usage":{"include":true},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Considering","reasoning_details":[{"type":"reasoning.summary","summary":"**Considering","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" got","reasoning_details":[{"type":"reasoning.summary","summary":" got","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.summary","summary":" of","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" seems","reasoning_details":[{"type":"reasoning.summary","summary":" seems","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" unrealistic","reasoning_details":[{"type":"reasoning.summary","summary":" unrealistic","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" could","reasoning_details":[{"type":"reasoning.summary","summary":" could","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" happen","reasoning_details":[{"type":"reasoning.summary","summary":" happen","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" during","reasoning_details":[{"type":"reasoning.summary","summary":" during","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" heat","reasoning_details":[{"type":"reasoning.summary","summary":" heat","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"wave","reasoning_details":[{"type":"reasoning.summary","summary":"wave","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.summary","summary":" The","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" likely","reasoning_details":[{"type":"reasoning.summary","summary":" likely","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" delivers","reasoning_details":[{"type":"reasoning.summary","summary":" delivers","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" conditions","reasoning_details":[{"type":"reasoning.summary","summary":" conditions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" For","reasoning_details":[{"type":"reasoning.summary","summary":" For","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" question","reasoning_details":[{"type":"reasoning.summary","summary":" question","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" “","reasoning_details":[{"type":"reasoning.summary","summary":" “","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What","reasoning_details":[{"type":"reasoning.summary","summary":"What","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?”","reasoning_details":[{"type":"reasoning.summary","summary":"?”","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" output","reasoning_details":[{"type":"reasoning.summary","summary":" output","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" while","reasoning_details":[{"type":"reasoning.summary","summary":" while","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" noting","reasoning_details":[{"type":"reasoning.summary","summary":" noting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" date","reasoning_details":[{"type":"reasoning.summary","summary":" date","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 202","reasoning_details":[{"type":"reasoning.summary","summary":" 202","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"5","reasoning_details":[{"type":"reasoning.summary","summary":"5","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.summary","summary":"-","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"09","reasoning_details":[{"type":"reasoning.summary","summary":"09","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.summary","summary":"-","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"24","reasoning_details":[{"type":"reasoning.summary","summary":"24","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" think","reasoning_details":[{"type":"reasoning.summary","summary":" think","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" “","reasoning_details":[{"type":"reasoning.summary","summary":" “","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Current","reasoning_details":[{"type":"reasoning.summary","summary":"Current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" That","reasoning_details":[{"type":"reasoning.summary","summary":" That","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very","reasoning_details":[{"type":"reasoning.summary","summary":" very","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hot","reasoning_details":[{"type":"reasoning.summary","summary":" hot","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":";","reasoning_details":[{"type":"reasoning.summary","summary":";","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stay","reasoning_details":[{"type":"reasoning.summary","summary":" stay","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hydrated","reasoning_details":[{"type":"reasoning.summary","summary":" hydrated","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".”","reasoning_details":[{"type":"reasoning.summary","summary":".”","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" could","reasoning_details":[{"type":"reasoning.summary","summary":" could","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.summary","summary":" also","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ask","reasoning_details":[{"type":"reasoning.summary","summary":" ask","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.summary","summary":" if","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.summary","summary":" more","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" details","reasoning_details":[{"type":"reasoning.summary","summary":" details","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" without","reasoning_details":[{"type":"reasoning.summary","summary":" without","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" adding","reasoning_details":[{"type":"reasoning.summary","summary":" adding","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" extra","reasoning_details":[{"type":"reasoning.summary","summary":" extra","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formatting","reasoning_details":[{"type":"reasoning.summary","summary":" formatting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Final","reasoning_details":[{"type":"reasoning.summary","summary":"**Final","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"izing","reasoning_details":[{"type":"reasoning.summary","summary":"izing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stick","reasoning_details":[{"type":"reasoning.summary","summary":" stick","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.summary","summary":"'s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" result","reasoning_details":[{"type":"reasoning.summary","summary":" result","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" “","reasoning_details":[{"type":"reasoning.summary","summary":" “","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Current","reasoning_details":[{"type":"reasoning.summary","summary":"Current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" around","reasoning_details":[{"type":"reasoning.summary","summary":" around","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".”","reasoning_details":[{"type":"reasoning.summary","summary":".”","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" If","reasoning_details":[{"type":"reasoning.summary","summary":" If","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.summary","summary":" wants","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.summary","summary":" more","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" details","reasoning_details":[{"type":"reasoning.summary","summary":" details","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.summary","summary":" like","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" conditions","reasoning_details":[{"type":"reasoning.summary","summary":" conditions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ask","reasoning_details":[{"type":"reasoning.summary","summary":" ask","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clarify","reasoning_details":[{"type":"reasoning.summary","summary":" clarify","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" timeframe","reasoning_details":[{"type":"reasoning.summary","summary":" timeframe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" allow","reasoning_details":[{"type":"reasoning.summary","summary":" allow","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.summary","summary":" me","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" check","reasoning_details":[{"type":"reasoning.summary","summary":" check","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" further","reasoning_details":[{"type":"reasoning.summary","summary":" further","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" emphasize","reasoning_details":[{"type":"reasoning.summary","summary":" emphasize","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provides","reasoning_details":[{"type":"reasoning.summary","summary":" provides","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" must","reasoning_details":[{"type":"reasoning.summary","summary":" must","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" reflect","reasoning_details":[{"type":"reasoning.summary","summary":" reflect","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" output","reasoning_details":[{"type":"reasoning.summary","summary":" output","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" accurately","reasoning_details":[{"type":"reasoning.summary","summary":" accurately","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" sure","reasoning_details":[{"type":"reasoning.summary","summary":" sure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" deliver","reasoning_details":[{"type":"reasoning.summary","summary":" deliver","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearly","reasoning_details":[{"type":"reasoning.summary","summary":" clearly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo073DETBtZrg43ztvEApKyQgM8WbQUj7QorLCkvuRpa691iXzfRlzK92PdJ7mlBEn2t_lEX4EPCJZoCUx4yybxkjSU0MSLmsscFWHn9vHhUcnFJNRTvupXeTxuGGgBQxeGumUkHrzxaXvq7lk2aPHOabF6UewQ1iTTIzvccWSoHkdRXPhuslAtQIXuz1IWJdedUtUBvysQp3afVk0gb2XOrRTfFkE_JlBqsD0Kb5vit8t4zc4baIRhcUShF-t7gmwkUOovUpI65ak8p27g-DuDGdx5-YpdxErFsz9Y1e15z_3KtLx-_PCe_lxUQO3ph1rnkm1WotMVOgsOR0343rCF8x_3ny5pWa-3VtlNagDOqzpkggNWYFB9tI2uL8byVuLsZhFj2jWEO7CnL9CVTmZpoW15tjO28dfOcEbnz2J-61DFmrLgKq5gceeWjrmBVx5344wuHl-OOsAghkrgNaMBCC-2VHYEIrhr0sVz0JiT1i06wFNpUUHegpW7ybSrogAzMg0qkayJif9lgmO4khdwhapXLSnWFs1anyMVlpRtuLSHLI-OdVb-kkxYPyPRlKeDWk_pyHepZvgAWRbABYhsssMJj7-WLy0HpK-fjX15vOhWjXP1efZF7ZSogWMYf9SpgCodxWuLgJ-JT7GjUFUaaEfv9XSeaVgI6lQYgzQoR2lxWW8HH2GRME_kphBLkDiZbQfs6-JDEzsvmqTHY_tXR6x6wPgUpfH3ThwZ1ER1UtTXwm-8BHHcVB3WriXrh8NC3To1Yg3AJpc6PP5d4APgYdqC-Y85az2EQB7cxuEQjBHo5fKmQOkHGZ_43zYlPEzkutjDRBT1ua0IREyNYc4CHticBY8X8HsdGb0OaXoB-VyuTwkaD09WEH9-ks_hIpRD9tZD5_ZQkyonsaC29CMDPkS25gSX2yYnmN8ezNWDEF5VRT7V_Tw9WMWfTJewLM_wguEkBHLzNmkd5oFRubTVPWMTQmaAveFOXQfO4kPfqKWCWX1mgwnUbFi8GLRvrSSu_pjbut5_UcDVGengaJRCFM1VSr6NbCFvcQM7e0rPrziH7CPjUEFC5W2STbQ1nfEb0jsxpjV8wcG9jdhf6rt1C99wY6UQFWXX6sY1UsK_Z0zqTkxIJrFHeX-952dVvIMC4ZYYXXpoUjIZqgqKyYRukQpCvOu6eYe4G_cTYjeNSZ74RGPh0QIQXVnrtVMon7NrSiDP-DYm_jXwggERelCaAXkJSn99hiZ3my_ITDGba3rM27IR7n4IzAaGgu5nkEfZVdhQzExjCCukbwQOaQzVsS6SaavlIXQYHUqJbrNfZBBSZD4PDfkLom_lZ7d8lY_rRy79IHsXP2-jgf_mHkJgRUJZplBQrSBp14zUR4I5Y_ezJ0x3Uvb7B9KO0T1MaDFRFd_NO3uiBiV27rYa9AD2sQSv6a-iCPzpVYS6i_8FvzVmUGx9AA-A-NrOpTk3VFoEe23UO83pQxbogoaScKC_RYYG6hOVIkRPGLpwylxzb3qfuNovquSGlfZUH-YBJGzayqnDDFqp8mSL5hirBqz7Md3YqHbSyuhYeRf3iyldhz7YUO048kySMGfItslw3f4bSPyr_uTJVtXCczWMNgoUyr6TA5WRU6rlUfhANrUws_Tr1wIPzTMkJvWPOuipZ5QkFqzxNCssykB9po2A6y26tEEb6AudC6k3-p3vvRqnHzFaso0JTrTyznLBHMM6ekxiFUH_ac8dmcfPcDn3s2MrjXeiuiil3D7JAerJAmF6m_rxvBkriIcx3Eda7y5tvIM95hPpKyYeRqqAI1moMVSfjoEuYdVouX9XSicupy2z4LZNCCVcDbncYwW7NCiVJkjChFTsEZa3-VAV6YCnbHSgyp2v-2bGqGfYU5Tp62h02JLr_Em6UoD9gMREFYKKsqbcF4cDpSpg4lkCrVXyYv3hRgjsW631ZknA7HWfHFnGWhnHtbMBwglR0RxarjctZj2Ju7t-Is24qt7rlr_9KRom_jL-imSB3CoH12VllMatEduTNPr-WaliXjVFCTr2hLrDdnI7U9gSChOYk44iH5HPcMasQFEbJpA5d8X4ma7QhqQwJ-k1oAvKgt-r8UJnj7wMTozxct6V1nej5dwOOvZM9M3nJLFfdaEs2WxIdlZoYOiO61dHdAZqv6q_0wjp-zmUqnfD9nFwGnl4mN42-LQ8m0x9Vdj3RDtx91CV8pDSuBqwOjB7OlUekVA41ajWsVRFhpa7OL5q4bD0CrMTlm8k103ppWCaKRYT5wEwEv_5Ymj_GkAxvwPNPDafTUvvYPIgbLJisfNhImu0OTCADF_xBeiAEUplF7HMCM08w4QjQSe4Ip4p4YoHxi18FXOxgAPblrMWRJ0B3mV_UyUufR1IAYb3LUDfBbsq_Pgo_ge1s-HHGg=","id":"rs_68d3bdbd8784819081aaf1adc33fe487","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"Flor"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"ence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" around"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" That"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" very"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"—"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"stay"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" limit"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" time"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" direct"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" sun"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" Want"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" me"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecast"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" or"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" humidity"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"/w"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"ind"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":" details"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":"?"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707132-rz5glkvITfNhx4vG1GG4","provider":"Azure","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707132,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":92,"completion_tokens":299,"total_tokens":391,"cost":0.003105,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000115,"upstream_inference_completions_cost":0.00299},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 881.220375ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_openai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_openai.yaml
deleted file mode 100644
index 86fa0d3080b664160dd8849410a5d7ae6c7e9f59..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_gpt-5_openai.yaml
+++ /dev/null
@@ -1,707 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 575
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" info","reasoning_details":[{"type":"reasoning.summary","summary":" info","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" retrieve","reasoning_details":[{"type":"reasoning.summary","summary":" retrieve","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided","reasoning_details":[{"type":"reasoning.summary","summary":" provided","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" There's","reasoning_details":[{"type":"reasoning.summary","summary":" There's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" requires","reasoning_details":[{"type":"reasoning.summary","summary":" requires","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" JSON","reasoning_details":[{"type":"reasoning.summary","summary":" JSON","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" object","reasoning_details":[{"type":"reasoning.summary","summary":" object","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" string","reasoning_details":[{"type":"reasoning.summary","summary":" string","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" However","reasoning_details":[{"type":"reasoning.summary","summary":" However","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" we","reasoning_details":[{"type":"reasoning.summary","summary":" we","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".","reasoning_details":[{"type":"reasoning.summary","summary":"\".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" commentary","reasoning_details":[{"type":"reasoning.summary","summary":" commentary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" once","reasoning_details":[{"type":"reasoning.summary","summary":" once","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" share","reasoning_details":[{"type":"reasoning.summary","summary":" share","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" current","reasoning_details":[{"type":"reasoning.summary","summary":" current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" data","reasoning_details":[{"type":"reasoning.summary","summary":" data","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let","reasoning_details":[{"type":"reasoning.summary","summary":" Let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo072AR80EltHjvY8WJdP4dm0Ozqv60BjdekxsNIbG-fua3M9vJ1vTX8l7LL7yxJ8ATRlwB7WY76ZCpJKArGAmqal5ZiCNCPZqn_fp92S-9adVOhrA6Tv0gg-Fw9SMdn1OHq0XdoyHDmi9ID19fZtj_6M7bkqXaYWdUL_DmnSL_0nWApLH5K8lhy0mEDcrrVzuNgzJXBVLlCcvzLIzbQSGQ434UQ9XU_KpR17GrvQg22bNreqQgdZ8OwqGvmUdg_1wlZMnIuEIcex9ZivvRkOSTd02nExSQXOLS0qJfKHbnJTQa1uYktBXEXybNpOl3gk7QNbfTaKW_SOjDgAFmbwVg_0whnJDeUDalo9AvU3aFeHB0OzgnL9zpS1MgWJv_OinVTarLFdPGTPhwkNzTLW7gn732W7QcCAyTE0cJiM-bxq32Hsi6c9dis3aP7-lN89wll_XZV6QiyV4WvVh1hPxKbVlU95MyUA9sA4JieLhTFpKB2K0YXjuF-yQmXEK4heD4Mq4kVNUgS19zIObZsAEW2es96anDsGXcUwzdCynGc7hrR1AOoSZmEx0yF59OuP8-Izrzq6wea9Njo4cnSjm71ZbfKt5dor8oVCXRghiCi-A-VlYlfJB8CdqdaBpdZJKL_PeUx__Gc3zZUaAMy_lloAZJACjtdb3k-knzDU_sLXwnTApvyQaLzoMZdoSAyOhiZVTKR8MoRb8L36lLcXQ805Ur4G0N0bQwSa6sTRvzhPyCAXLuSMLlUm9dhKjSz48R68OPyA38higjBaTB-0jZJh7waVuDFhiMGI6z1VCxyP5-fwtH_NpJjANy3WvbS0beCONU3vT5VSXq8QhdY62UM9KC9n0pWqwzZyEpd78e7gpd80GQ1oZfdxVvu9TRdCL37yAxqf6p3TR1V5xefpK6pR0O6pCRENww9K0iDPN882fhJNEQjtGT0kuPS-QzEtU8hGV2WbgRSRWqAbIa0sOBe0DP7ja9yziH-_H229AbYALj2LZ8QrxWoEyewEYnpdo7uBrfkvmXTBrhr-28Ep5Bnrs7pR76slfB4M9dhbfrCXWYTYaU41_LWs34O6GB65SktpkApQRqWu-n2DRwYKzAlQEY-vDGhQxpocINUGyJy_Yx-_-g1tozbYCuvQanyyqDJPaCdJgbKtiMhADFvMeKe0nZkXBGvFXjtIas3B3GBg5YPa6vMsIIldbCDPFVWxEaxDklVChaGKhTwu-mPYm6vUKeEBh9ZRhqArNg6Ou37Xu6oGu24rQ4odi8EMLO2E6OR0A_Q-JptrNom95LBnMwqgQ76xQFtP5Ylnh3_Dj4BMr1sHuftiBk6r8bqkcexY2YTqAh-uAzIc32lGJS4l6MmMYtUzeuXXxDaMeLtYHp23XbGEp425vyxh06xwcOJseP9ClJvPcO4gVSrE17tytfLMhURmlDdBY1TWTEfJmwA1VfDIPScXuuMwwQnPiTaMCb3zvGZCX4DnG4vhql8MYF8MZQPDGENTl0ij8Bb66P8U_neJUwHbm-ty0unuV7Gf9ZxarvMV0W6mvm2ZicFkAhbcurA==","id":"rs_68d3bd7d52b48197b166576cc0dd27a1031a71dc440f74de","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_ODOIzLCpfOOLsZ6Azqnte7mT","index":1,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\":\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"Flor"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"ence"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":" Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707068-K1yICzs1vgLO3mEIMAwT","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707068,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":63,"completion_tokens":86,"total_tokens":149,"cost":0.000469375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000039375,"upstream_inference_completions_cost":0.00043},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 850.374375ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 827
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_ODOIzLCpfOOLsZ6Azqnte7mT","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_ODOIzLCpfOOLsZ6Azqnte7mT","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["openai"]},"usage":{"include":true},"stream":true}'
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://openrouter.ai/api/v1/chat/completions
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Present","reasoning_details":[{"type":"reasoning.summary","summary":"**Present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ing","reasoning_details":[{"type":"reasoning.summary","summary":"ing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI've","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI've","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" got","reasoning_details":[{"type":"reasoning.summary","summary":" got","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" —","reasoning_details":[{"type":"reasoning.summary","summary":" —","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it's","reasoning_details":[{"type":"reasoning.summary","summary":" it's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" That","reasoning_details":[{"type":"reasoning.summary","summary":" That","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" feels","reasoning_details":[{"type":"reasoning.summary","summary":" feels","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" pretty","reasoning_details":[{"type":"reasoning.summary","summary":" pretty","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" high","reasoning_details":[{"type":"reasoning.summary","summary":" high","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clarity","reasoning_details":[{"type":"reasoning.summary","summary":" clarity","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" maybe","reasoning_details":[{"type":"reasoning.summary","summary":" maybe","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" convert","reasoning_details":[{"type":"reasoning.summary","summary":" convert","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Fahrenheit","reasoning_details":[{"type":"reasoning.summary","summary":" Fahrenheit","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 104","reasoning_details":[{"type":"reasoning.summary","summary":" 104","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°F","reasoning_details":[{"type":"reasoning.summary","summary":"°F","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.summary","summary":" It","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" might","reasoning_details":[{"type":"reasoning.summary","summary":" might","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" smart","reasoning_details":[{"type":"reasoning.summary","summary":" smart","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ask","reasoning_details":[{"type":"reasoning.summary","summary":" ask","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.summary","summary":" if","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.summary","summary":" have","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" careful","reasoning_details":[{"type":"reasoning.summary","summary":" careful","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" invent","reasoning_details":[{"type":"reasoning.summary","summary":" invent","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" details","reasoning_details":[{"type":"reasoning.summary","summary":" details","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.summary","summary":" like","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" humidity","reasoning_details":[{"type":"reasoning.summary","summary":" humidity","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" conditions","reasoning_details":[{"type":"reasoning.summary","summary":" conditions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" unless","reasoning_details":[{"type":"reasoning.summary","summary":" unless","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" received","reasoning_details":[{"type":"reasoning.summary","summary":" received","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.summary","summary":" them","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" from","reasoning_details":[{"type":"reasoning.summary","summary":" from","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" keep","reasoning_details":[{"type":"reasoning.summary","summary":" keep","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" my","reasoning_details":[{"type":"reasoning.summary","summary":" my","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.summary","summary":" answer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" concise","reasoning_details":[{"type":"reasoning.summary","summary":" concise","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" useful","reasoning_details":[{"type":"reasoning.summary","summary":" useful","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" suggest","reasoning_details":[{"type":"reasoning.summary","summary":" suggest","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" staying","reasoning_details":[{"type":"reasoning.summary","summary":" staying","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hydrated","reasoning_details":[{"type":"reasoning.summary","summary":" hydrated","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" heat","reasoning_details":[{"type":"reasoning.summary","summary":" heat","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Providing","reasoning_details":[{"type":"reasoning.summary","summary":"**Providing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" current","reasoning_details":[{"type":"reasoning.summary","summary":" current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" keep","reasoning_details":[{"type":"reasoning.summary","summary":" keep","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" straightforward","reasoning_details":[{"type":"reasoning.summary","summary":" straightforward","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" minimal","reasoning_details":[{"type":"reasoning.summary","summary":" minimal","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.summary","summary":" say","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" current","reasoning_details":[{"type":"reasoning.summary","summary":" current","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" about","reasoning_details":[{"type":"reasoning.summary","summary":" about","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 40","reasoning_details":[{"type":"reasoning.summary","summary":" 40","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°C","reasoning_details":[{"type":"reasoning.summary","summary":"°C","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.summary","summary":" (","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"104","reasoning_details":[{"type":"reasoning.summary","summary":"104","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"°F","reasoning_details":[{"type":"reasoning.summary","summary":"°F","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":").","reasoning_details":[{"type":"reasoning.summary","summary":").","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.summary","summary":" also","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" check","reasoning_details":[{"type":"reasoning.summary","summary":" check","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.summary","summary":" if","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.summary","summary":" wants","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" quite","reasoning_details":[{"type":"reasoning.summary","summary":" quite","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hot","reasoning_details":[{"type":"reasoning.summary","summary":" hot","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" right","reasoning_details":[{"type":"reasoning.summary","summary":" right","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" now","reasoning_details":[{"type":"reasoning.summary","summary":" now","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.summary","summary":" should","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mention","reasoning_details":[{"type":"reasoning.summary","summary":" mention","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" while","reasoning_details":[{"type":"reasoning.summary","summary":" while","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ask","reasoning_details":[{"type":"reasoning.summary","summary":" ask","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.summary","summary":" if","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" an","reasoning_details":[{"type":"reasoning.summary","summary":" an","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hourly","reasoning_details":[{"type":"reasoning.summary","summary":" hourly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.summary","summary":" or","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weekly","reasoning_details":[{"type":"reasoning.summary","summary":" weekly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forecast","reasoning_details":[{"type":"reasoning.summary","summary":" forecast","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" don't","reasoning_details":[{"type":"reasoning.summary","summary":" don't","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.summary","summary":" have","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" let","reasoning_details":[{"type":"reasoning.summary","summary":" let","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’s","reasoning_details":[{"type":"reasoning.summary","summary":"’s","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" focus","reasoning_details":[{"type":"reasoning.summary","summary":" focus","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" on","reasoning_details":[{"type":"reasoning.summary","summary":" on","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" delivering","reasoning_details":[{"type":"reasoning.summary","summary":" delivering","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.summary","summary":" temperature","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" confirming","reasoning_details":[{"type":"reasoning.summary","summary":" confirming","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" their","reasoning_details":[{"type":"reasoning.summary","summary":" their","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" needs","reasoning_details":[{"type":"reasoning.summary","summary":" needs","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo072J_sLToFepArMrSY0UgzZcLbhQwyM24KxlFg0ZWSdGgjit1_wGcNCmq9g4sIBuhJtytGmGgX07hh3Y1hjddS5doZWU5H3-7HOs8sdhJ-9sGsAZ3fzkZ5bdv2a6Ast4Rquqb2sW1T-CAj-clNmogJlrU0Z55fejRl7L7EkCV8nn4T8FSVU7e7x2XTsEqLTK3q4iSgjk98S1lidFhw_RnR3jWRGwHgl3ihHLxn7N85myyBDUmUg_p0rfgQUz5CArygpGuEXD7VKyJNsu2T64qsDlaHXwKiNUjLL8_ZpnOrMmpWAABKVWSXL9BhiHnNEkFHXXbRTAkfDCSOPLWj5QuDK4yi_CiHebmOT-wYd5QnYQEuCQTpsuUVA_V3NAxZSP20MUO_aaeE7sG4IVr3V0F6b5lo4_QKv-7Wbs1RFgXtvLEcJX-_dxjaJDxeanqAMMcPKHup_u6LSIz8wN-dUKTjXa3Skzq8xBycw1UrubpHmlW4PE-OplZvj8V4cjdlOVhI4k_XFxitKX0sTx34lPBMsmcQJEthTuBT50Mm0d3trGY75Xwb5FJ9KynBQB-Mz6_tISMtkMhB4296YXXy-zRnsV3xZrnzlTokxQAidYr1C6SBjGM73rTp6GfqWvy2I2kdUN4WGNhCWTmqSFV09PG8fvpHnk_mJnW2T2n-7Xr9lnpFzBMecXQvkMxh3WrxMF1Y22H7fHg4Upm1UxuXrD6h3fTZb7qreBQq7ztEF5KEcEeuyzjIkOZHycdbVOrs2FVUQiQLJ8ocpeYwYF6Hs-1sLncmJd2jIi0xjkiEIDOfXMCkLpTpUECK6TDcU3joLlCS7540SdgMskSbHd5Z3yyqltOo1iEIDWJ6GoNSEmE7fb360YDcfPXFVeYotlNCRUADARTWhvUzFrABgmzzpVDGzo38ylDZuI_2X9AV_X6uinJnyAhcwAXrHn0Blt8X3CPWkwniNuzLIvVmhZKGwjRUVzhSzrcerNNT23yr3ZN1u0-87Y-A1lLDc8B4xrK48X2_lzuApY-IhM4KrxHUY-a4TcLU1lvAQ-8kS7YSdRtH0HZtUfPfEClAAp7iacnCLCORXKQxur7T0rzH_h4PhUiwj4lE-wqEgAGhcNd3EVZJZoZ5o4SGMSbYOm3X0FW1brGOJ-g6YIk-ZF_yJZ8YpSwkJDwm08rHI8Rgn4UwLxsMJqhF7jEqOEImil766OAtuRUgh7Pm8VqyJZzpFveMD0lYuMhgv_f36SpypHZntR4YX6SREC-OzGAQVOsv9NCvId6Ti-Kp5zHstqgDDNuQJxPOSA_vpgFwCSDJG2JdjWEL2GnZi_NXZ9EG5k6CkwutqPC-NPZ3885UFGrhHnAY0zD6kE33Bp9hhuAi5N0ekBrc4qAzfawMOg7LZUJxTgTtk7Pqn6kGHKdkAxwpsqnxeDTCsKShY-r-85aO3-5Q7frNEIDhkUnKwZbUZs-KuFrxXEwDlppTm4vp9L5M6LPae2Im-3T1XsAqRl6HcPpY4Xr6nSekidDkTN0NgYP8hfzzULNF6NvAeH3InLXcbNlWU8pQbA1T5aRgS3xAVU0gVPY-OYMDJL75-6FHM4ibB6m0xMLrwnfkqgxWr0ycpmJmSVuFlh5oNgrl4ZZK3cfVXgqZyRVby2-coKrp3g5YeX2jsHB7tw1HO6E4hr0WKwFSqArALnfXNf-fNV06Ua7lmAXAFBf4PMxldLrmn1WlGi4-PVcY24QryPe_q6Q6VvLPEJAuPb7FJdtOHoqCu1DB6HOJ_TNYlJ_bTUJv95rbdpWiVrKG2Z2ScAcde0QVA6YIMlEuPf63sE9J_04AKpmumlTNNh2yzDphYkb8-ZOh0UBJKrEKr5_A4mlfLukB9yFUEtuHMspLEUd_KTjAbloolKb6c5DuvPwg_yaSHDHSYUvEJYzy_1-KZ_Y8MgUja5vMbcDecBZCnPEeetZaq5sbZTGqDPcM5klEphEqO0ptzaZbT3KCpXX5vVzJ4xedF9X24l07rAPrTO0ToT8djg3k0ROoxQMJKBg-T3a8t5b7MyLUOWd56gC5_pk4jNMG4yOJAvOucgjLxe06JbccixAngUHYV5CTaAd5x1CskFdmCpzeuRnsbyO5fEgQUl928H_hoRBm6wShq8iZAPhWqbOrrwCk2BoL08zDtgJTF8p-5NRjUoFlcVZwjwqwr9ta0Y_WWa-Ez4Qfar1brEGVgfLI2gxNiE0BV0Uc4O0IvAaTfz8UHxYzzR4vTdzmEPugP119SVtvpVzXGNaWZ5cMsbmhDoYp3dir5WqVbc4B7B8w7tz0brBdnmwtDezonzxR3hbpLq1ZOHzGtuMyt_9GX_NtXhuPEHDRUAuu28fZZRYPF2S-7nseCyjKf_f_sOv_h40m7945yLyAstgswFMKkiCwUE2J3d_bFehURTvF-JdhYUrOiVNP8UpvGixWjUfZ2YqZEpalnInR3DgiLPn1QaBjmu1Xwwe9vUnQP2mtqdiNVRjqZJ9805pR1JimG_zW-lXk0ACEswx1Ci5jBDXB69h3oePZ9hveu-69MyXX22jM2YnSxKlmVdKf7QTiCAZ3KNmnubJvq-lqmFRpKraBPQH_CyzPRcuAZONxqZnUi-BMmKudBTZ8nTO6SK7AKHbJTKpIg3uOrZJIkXNVT7sR3yOxQZsDDMA8Iu1vaNzsX9vHqOmhj2D0_iHf9RrpABHF1CmDmf6soxUJSaHXD7Mwg9DGUxgFJ1bdiE6zVjfq_JY9mXZ7sCSTjV","id":"rs_68d3bd81f4f8819095528478b0070de4","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" about"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" Stay"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" cool"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"—"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"would"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" like"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" a"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecast"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" or"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" tips"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" dealing"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" with"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":" heat"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":"?"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]}
-
- data: {"id":"gen-1758707072-A0857ClEUwLMUdRl5psu","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758707073,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":92,"completion_tokens":296,"total_tokens":388,"cost":0.0015375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000575,"upstream_inference_completions_cost":0.00148},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 663.669125ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free.yaml
index d554aeaba48d6649742abf3f13689f0d9d8a965b..e69db3636bfb783ba9a398371eb845929c222444 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free.yaml
@@ -24,497 +24,317 @@ interactions:
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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"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-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_20888006","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":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"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":"","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: {"id":"gen-1758709926-KLu1Q2b9fSzwQ8Lnuptg","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709926,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":322,"completion_tokens":179,"total_tokens":501,"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":153,"image_tokens":0}}}
data: [DONE]
@@ -523,7 +343,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 377.46775ms
+ duration: 383.832584ms
- id: 1
request:
proto: HTTP/1.1
@@ -531,7 +351,7 @@ interactions:
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}'
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_20888006","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_20888006","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
@@ -547,177 +367,183 @@ interactions:
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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature","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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":" hot","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":"40","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":"°C","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":"104","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":"°F","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":" If","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":" need","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":" more","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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":" details","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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":" like","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
+ data: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecast","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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"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-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"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: {"id":"gen-1758709928-VZVdPobsW5hUaKCeGI9r","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758709928,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":514,"completion_tokens":87,"total_tokens":601,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":502,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":60,"image_tokens":0}}}
data: [DONE]
@@ -726,4 +552,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 311.512583ms
+ duration: 273.292834ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free_xai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free_xai.yaml
deleted file mode 100644
index 3f03f4e8d5d974f8ad8a6b4d27b4e245d004d1ca..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-4-fast-free_xai.yaml
+++ /dev/null
@@ -1,535 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 570
- 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"}],"provider":{"only":["xai"]},"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-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_42882503","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-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"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-1758703686-nMu50m508HvuI3cvmcAY","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703686,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":322,"completion_tokens":182,"total_tokens":504,"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":156,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 699.243958ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 790
- 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_42882503","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_42882503","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"}],"provider":{"only":["xai"]},"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"sun","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"ny","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":").","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":" humidity","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_9362061f30"}
-
- data: {"id":"gen-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"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-1758703690-zJ4IpETUsvnqGJgVx9zu","provider":"xAI","model":"x-ai/grok-4-fast:free","object":"chat.completion.chunk","created":1758703690,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":517,"completion_tokens":74,"total_tokens":591,"cost":0,"is_byok":false,"prompt_tokens_details":{"cached_tokens":505,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":42,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.150267791s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1.yaml
index aac67d630ee5e94dd48b97d83903cb15174e4cb7..4d564d871d267dcd4f844e49e3c3895e4873d14d 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1.yaml
@@ -24,219 +24,327 @@ interactions:
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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" about","reasoning_details":[{"type":"reasoning.text","text":" about","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.text","text":" have","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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":" 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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" called","reasoning_details":[{"type":"reasoning.text","text":" called","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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":" 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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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":" 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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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":" 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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.text","text":" can","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.text","text":" get","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"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":""},"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: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Gathering Weather Details \n- The user wants to know the weather in Florence, Italy.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Gathering Weather Details \n- The user wants to know the weather in Florence, Italy.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_63896137","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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"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-1758709880-p44ZNvrlN9otYVTK0jJj","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709880,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":390,"completion_tokens":184,"total_tokens":574,"cost":0.00028488,"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.000276},"completion_tokens_details":{"reasoning_tokens":158,"image_tokens":0}}}
data: [DONE]
@@ -245,7 +353,7 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 406.194458ms
+ duration: 298.535917ms
- id: 1
request:
proto: HTTP/1.1
@@ -253,7 +361,7 @@ interactions:
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}'
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_63896137","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_63896137","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
@@ -269,105 +377,461 @@ interactions:
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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.text","text":" which","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" assume","reasoning_details":[{"type":"reasoning.text","text":" assume","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" means","reasoning_details":[{"type":"reasoning.text","text":" means","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" degrees","reasoning_details":[{"type":"reasoning.text","text":" degrees","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Celsius","reasoning_details":[{"type":"reasoning.text","text":" Celsius","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Checking weather data \n- The tool provided \"40 C\" as the result, likely indicating 40 degrees Celsius for Florence, Italy.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Checking weather data \n- The tool provided \"40 C\" as the result, likely indicating 40 degrees Celsius for Florence, Italy.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- This appears to be the current temperature, aligning with the user's likely interest in weather conditions.","reasoning_details":[{"type":"reasoning.text","text":" \n- This appears to be the current temperature, aligning with the user's likely interest in weather conditions.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":" 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":" 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":" \"","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":" 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":"\"","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":" 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":" 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":",","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":" 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":".\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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" shows","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" of","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" For","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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"}
- 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" detailed","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" information","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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"}
- 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" may","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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"}
- 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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"}
- 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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" check","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" reliable","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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":"°C","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+ data: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":" source","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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"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-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"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: {"id":"gen-1758709881-ylFkHhSWB5GFqJrOqwjN","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758709882,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":587,"completion_tokens":226,"total_tokens":813,"cost":0.00036424,"is_byok":false,"prompt_tokens_details":{"cached_tokens":512,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002524,"upstream_inference_completions_cost":0.000339},"completion_tokens_details":{"reasoning_tokens":195,"image_tokens":0}}}
data: [DONE]
@@ -376,4 +840,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 484.715417ms
+ duration: 376.146375ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1_xai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1_xai.yaml
deleted file mode 100644
index 5f1ca4216254ecec24d187c704fd1d785a5e2568..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_grok-code-fast-1_xai.yaml
+++ /dev/null
@@ -1,979 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 570
- 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"}],"provider":{"only":["xai"]},"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What's","reasoning_details":[{"type":"reasoning.text","text":"What's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Investigating user query \n- The user wants to know the current weather in Florence, Italy.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Investigating user query \n- The user wants to know the current weather in Florence, Italy.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- This involves retrieving weather information for a specific location.","reasoning_details":[{"type":"reasoning.text","text":" \n- This involves retrieving weather information for a specific location.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n\n## Formulating approach \n- Found a way to get weather data by specifying the city as a parameter.","reasoning_details":[{"type":"reasoning.text","text":" \n\n## Formulating approach \n- Found a way to get weather data by specifying the city as a parameter.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_91124540","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-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \n- Planning to use \"Florence, Italy\" as the location to fetch accurate weather details.","reasoning_details":[{"type":"reasoning.text","text":" \n- Planning to use \"Florence, Italy\" as the location to fetch accurate weather details.","format":"unknown","index":0}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703079-m8nGWodB9zDhxcNIah2e","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703079,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":390,"completion_tokens":222,"total_tokens":612,"cost":0.00034188,"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.000333},"completion_tokens_details":{"reasoning_tokens":196,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 928.497459ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 790
- 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_91124540","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_91124540","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"}],"provider":{"only":["xai"]},"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.text","text":" which","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" assume","reasoning_details":[{"type":"reasoning.text","text":" assume","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" degrees","reasoning_details":[{"type":"reasoning.text","text":" degrees","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Celsius","reasoning_details":[{"type":"reasoning.text","text":" Celsius","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Reviewing weather data \n- The tool provided weather information for Florence, Italy, returning \"40 C.","reasoning_details":[{"type":"reasoning.text","text":"\n\n## Reviewing weather data \n- The tool provided weather information for Florence, Italy, returning \"40 C.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" \n- Assuming this means 40 degrees Celsius, it indicates a hot temperature for the location.","reasoning_details":[{"type":"reasoning.text","text":"\" \n- Assuming this means 40 degrees Celsius, it indicates a hot temperature for the location.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":"Note","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":":","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" This","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" simplified","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" response","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" based","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" on","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" available","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" data","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":";","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" full","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecast","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" consider","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" checking","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":" service","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":".)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
- data: {"id":"gen-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"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-1758703084-SN5u3lQwyY9fNgFv8jOG","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758703084,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":625,"completion_tokens":256,"total_tokens":881,"cost":0.00040532,"is_byok":false,"prompt_tokens_details":{"cached_tokens":576,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002132,"upstream_inference_completions_cost":0.000384},"completion_tokens_details":{"reasoning_tokens":219,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 593.932667ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2.yaml
index 0fafdd3decc02d1453dde140e8e68601c908bf38..90cf5653efeba6ba08ae0b9f7f2e97cf1bc07d8f 100644
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2.yaml
+++ b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2.yaml
@@ -24,55 +24,55 @@ interactions:
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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"weather:0","type":"function","function":{"name":"weather","arguments":""}}]},"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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: {"id":"gen-1758709851-QEqIRKI009XxCHALjc2k","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709851,"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]
@@ -81,8 +81,37 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 2.03776975s
+ duration: 1.435186916s
- 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: '{"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":"GMICloud"}},"user_id":"user_2zMGmKqlf4zmAvL9snVImB1Z1ZQ"}'
+ headers:
+ Content-Type:
+ - application/json
+ status: 429 Too Many Requests
+ code: 429
+ duration: 648.639375ms
+ - id: 2
request:
proto: HTTP/1.1
proto_major: 1
@@ -105,79 +134,55 @@ interactions:
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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" current"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":")."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" It's"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" there"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" right"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":" now"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
- 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-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":""}
- 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: {"id":"gen-1758709855-hikO8aUvMtIUghqo5Q7b","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758709855,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":155,"completion_tokens":22,"total_tokens":177,"cost":0.00014028,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000899,"upstream_inference_completions_cost":0.00005038},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
data: [DONE]
@@ -186,4 +191,4 @@ interactions:
- text/event-stream
status: 200 OK
code: 200
- duration: 1.998385s
+ duration: 1.949914416s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_baseten.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_baseten.yaml
deleted file mode 100644
index 3fb14ea26986086dc2bc1cf293d286d61a2f62e1..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_baseten.yaml
+++ /dev/null
@@ -1,159 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 576
- 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"}],"provider":{"only":["baseten"]},"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-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":"{\"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":"Fl"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":"ore"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":"nce"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":"Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"","arguments":"\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698598-9XHbe8nO1up7h9tLit6N","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698598,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":104,"completion_tokens":32,"total_tokens":136,"cost":0.0001424,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000624,"upstream_inference_completions_cost":0.00008},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 386.150833ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 871
- 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":"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,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["baseten"]},"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-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":")."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" It's"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" there"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" right"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":" now"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":null}
-
- data: {"id":"gen-1758698599-iW97WPYH25kPjqCPFE2m","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698599,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":156,"completion_tokens":23,"total_tokens":179,"cost":0.0001511,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000936,"upstream_inference_completions_cost":0.0000575},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 496.955625ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_chutes.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_chutes.yaml
deleted file mode 100644
index 5c3912e6956f8788b3f96f7c4f26472b9e66e4fe..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_chutes.yaml
+++ /dev/null
@@ -1,157 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 575
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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"}],"provider":{"only":["chutes"]},"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-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.weather:0","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"{\"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"Fl"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"ore"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"nce"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":null,"index":0,"type":"function","function":{"name":null,"arguments":"\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758698431-gBPnHYfioe6vWXpYIu9E","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698431,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":94,"completion_tokens":32,"total_tokens":126,"cost":0.00008436,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00003572,"upstream_inference_completions_cost":0.00004864},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.230852709s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 870
- 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":"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,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["chutes"]},"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-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" -"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698433-tlSCWJSTjZdPdmRVSdsM","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698433,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":147,"completion_tokens":20,"total_tokens":167,"cost":0.00008626,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00005586,"upstream_inference_completions_cost":0.0000304},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.164862917s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_deepinfra.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_deepinfra.yaml
deleted file mode 100644
index 64ef83298dc71d30b39f047b85615059de6e0bb8..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_deepinfra.yaml
+++ /dev/null
@@ -1,77 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 578
- 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"}],"provider":{"only":["deepinfra"]},"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-1758698447-t6HVYtvjECljnjRZ8GvN","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698447,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698447-t6HVYtvjECljnjRZ8GvN","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698447,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"0","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758698447-t6HVYtvjECljnjRZ8GvN","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698447,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":90,"completion_tokens":10,"total_tokens":100,"cost":0.000065,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000045,"upstream_inference_completions_cost":0.00002},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 679.760417ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 774
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"0","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"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"}],"provider":{"only":["deepinfra"]},"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-1758698448-PjYIbGmFOAI3oWM4SemS","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698448,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698448-PjYIbGmFOAI3oWM4SemS","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698448,"choices":[{"index":0,"delta":{"role":"assistant","content":"The weather in Florence, Italy is 40 C."},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698448-PjYIbGmFOAI3oWM4SemS","provider":"DeepInfra","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698448,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":124,"completion_tokens":11,"total_tokens":135,"cost":0.000084,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000062,"upstream_inference_completions_cost":0.000022},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 802.196ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_fireworks.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_fireworks.yaml
deleted file mode 100644
index 43c31c747a249a84443436c8764384757d719d3c..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_fireworks.yaml
+++ /dev/null
@@ -1,157 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 578
- 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"}],"provider":{"only":["fireworks"]},"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-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll get"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" information"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" right"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":" now"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"weather"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"Fl"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"ore"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"nce"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758698524-5mpZ0tIRrK8q3Q6eZQAA","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698524,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":97,"completion_tokens":35,"total_tokens":132,"cost":0.0001457,"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.0000875},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 10.057092666s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 895
- 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 right now.","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,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["fireworks"]},"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-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":"The weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" -"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" that's"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698536-9yuyII7gp3usL5tI8gHI","provider":"Fireworks","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698536,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":146,"completion_tokens":17,"total_tokens":163,"cost":0.0001301,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000876,"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: 2.166147292s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_groq.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_groq.yaml
deleted file mode 100644
index 5f7231cffc1029247dc173ced2fe35567171ddc6..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_groq.yaml
+++ /dev/null
@@ -1,149 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 573
- 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"}],"provider":{"only":["groq"]},"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-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":"Let"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":" me"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence\"}"},"index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703128-RplHkDTJeNiFVROyOi4H","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703128,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":99,"completion_tokens":29,"total_tokens":128,"cost":0.000186,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000099,"upstream_inference_completions_cost":0.000087},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 275.632959ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 856
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"Let me check the weather for Florence, Italy.","tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\":\"Florence\"}","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,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["groq"]},"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-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" °"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" °"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"—"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"so"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" it"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" right"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":" now"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_6e6ff3688b"}
-
- data: {"id":"gen-1758703129-JVpkgPs4yE55K0L9Z65D","provider":"Groq","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758703129,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":147,"completion_tokens":26,"total_tokens":173,"cost":0.000225,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000147,"upstream_inference_completions_cost":0.000078},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 221.768625ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_moonshotai.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_moonshotai.yaml
deleted file mode 100644
index e423cc72909b77109bb0dfd1276c033db0aa11b3..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_moonshotai.yaml
+++ /dev/null
@@ -1,153 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 579
- 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"}],"provider":{"only":["moonshotai"]},"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" get"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" information"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"weather:0","type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"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-1758698549-Cj6sx2rFVy8SxIzE4rQi","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698549,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":76,"completion_tokens":32,"total_tokens":108,"cost":0.0001256,"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.00008},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.510256375s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 865
- 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":"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"}],"provider":{"only":["moonshotai"]},"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-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":")."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698552-kuvLITw54WQ4qVrGApNX","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698552,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":127,"completion_tokens":16,"total_tokens":143,"cost":0.0001162,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000762,"upstream_inference_completions_cost":0.00004},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.377033792s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_moonshotai/turbo.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_moonshotai/turbo.yaml
deleted file mode 100644
index aaf4cba842494f9c7cfda6f95e37c58fa1127aaf..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_moonshotai/turbo.yaml
+++ /dev/null
@@ -1,129 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 585
- 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"}],"provider":{"only":["moonshotai/turbo"]},"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-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"weather:0","type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"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_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698619-oNFYW9cVPVZcAzpztvgI","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698619,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":76,"completion_tokens":20,"total_tokens":96,"cost":0.0001912,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000912,"upstream_inference_completions_cost":0.0001},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.02439525s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 797
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"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"}],"provider":{"only":["moonshotai/turbo"]},"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-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":" °"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":"C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":"—"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":"quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"}
-
- data: {"id":"gen-1758698620-fpA5AIBswvPwvlGCGmv3","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698620,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":115,"completion_tokens":16,"total_tokens":131,"cost":0.000218,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000138,"upstream_inference_completions_cost":0.00008},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 875.896791ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_novita.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_novita.yaml
deleted file mode 100644
index 1796276fb7ee75fe014956cfa9f8181e4321429d..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_novita.yaml
+++ /dev/null
@@ -1,129 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 575
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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},"provider":{"only":["novita"]},"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"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-1758698576-XAjNfKwsDlXa9TW3B3yM","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698576,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":76,"completion_tokens":20,"total_tokens":96,"cost":0.0000956,"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.00005},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 2.14857275s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 787
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"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},"provider":{"only":["novita"]},"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-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":" current"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":")."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fpv0_ef28f882"}
-
- data: {"id":"gen-1758698579-i5c8s9QHwqjSPY3UCPId","provider":"Novita","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698579,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":115,"completion_tokens":16,"total_tokens":131,"cost":0.000109,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000069,"upstream_inference_completions_cost":0.00004},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.478965833s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_siliconflow.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_siliconflow.yaml
deleted file mode 100644
index c0b1398e98442252363e8238349ca637690a6db0..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_siliconflow.yaml
+++ /dev/null
@@ -1,197 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 580
- 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"}],"provider":{"only":["siliconflow"]},"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-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"location"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":" \""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"Fl"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"ore"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"nce"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":","}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"Italy"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":null,"type":"function","function":{"arguments":"\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647762-KghUIUodL1L59UJSyEo8","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647762,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":104,"completion_tokens":31,"total_tokens":135,"cost":0.00013131,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00006032,"upstream_inference_completions_cost":0.00007099},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.276751334s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 875
- 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":"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,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["siliconflow"]},"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-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" appears"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" be"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" right"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" now"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" with"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" a"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" temperature"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" of"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":")."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" Make"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" seek"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" shade"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" if"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" you're"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" planning"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" be"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":" outdoors"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":""}
-
- data: {"id":"gen-1758647765-u1AXxNss8Cq9wkMDOE9R","provider":"SiliconFlow","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647765,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":157,"completion_tokens":38,"total_tokens":195,"cost":0.00017808,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00009106,"upstream_inference_completions_cost":0.00008702},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 2.030076209s
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_together.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_together.yaml
deleted file mode 100644
index 38ca0da2c34042e6aa7593bea24d153fe5d5ed6c..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_together.yaml
+++ /dev/null
@@ -1,139 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 577
- 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},"provider":{"only":["together"]},"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-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_3phdhufcik484u5ko1t3mdif","type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"function":{"arguments":"{\"location\":\"Florence,Italy\"}"},"type":"function"}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758698607-pYD2nO2kNVUJeWepZLxm","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698607,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":105,"completion_tokens":32,"total_tokens":137,"cost":0.000201,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000105,"upstream_inference_completions_cost":0.000096},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 1.851215709s
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 891
- 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":"call_3phdhufcik484u5ko1t3mdif","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_3phdhufcik484u5ko1t3mdif","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"}],"provider":{"only":["together"]},"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-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" very"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" right"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" now"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":"—"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":"about"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" °"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":"C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":" °"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":"F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":")."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758698609-mepolQdTkunttYqQr0UU","provider":"Together","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758698609,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":205,"completion_tokens":20,"total_tokens":225,"cost":0.000265,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000205,"upstream_inference_completions_cost":0.00006},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 906.690209ms
diff --git a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_wandb.yaml b/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_wandb.yaml
deleted file mode 100644
index 35e5d7dc649679172d1456c7d034cef0555a2714..0000000000000000000000000000000000000000
--- a/providertests/testdata/TestOpenRouterCommon/tool_streaming_kimi-k2_wandb.yaml
+++ /dev/null
@@ -1,191 +0,0 @@
----
-version: 2
-interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 574
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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"}],"provider":{"only":["wandb"]},"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-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":" check"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":" right"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":" now"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"functions.weather:0","type":"function","index":0,"function":{"name":"weather"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"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}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"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}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"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}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"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}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"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}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"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}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"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}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"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}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
- data: {"id":"gen-1758647943-3Y7XIA4Pet8LczpLpaDZ","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647943,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":97,"completion_tokens":30,"total_tokens":127,"cost":0.00025095,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00013095,"upstream_inference_completions_cost":0.00012},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 496.2315ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 866
- 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 for Florence, Italy right now.","tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\": \"Florence\"}","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,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"provider":{"only":["wandb"]},"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-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"Fl"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"ore"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"nce"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" is"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" warm"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" right"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" now"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"—"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"temperature"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" around"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" °"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"**."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" If"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" you're"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" heading"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" out"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" be"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" to"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" use"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" plenty"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" of"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" sun"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":" protection"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":"!"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
- data: {"id":"gen-1758647944-5EeZ51jkbqPRveFpOa0F","provider":"WandB","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758647944,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":170,"completion_tokens":36,"total_tokens":206,"cost":0.0003735,"is_byok":false,"prompt_tokens_details":{"cached_tokens":64,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0002295,"upstream_inference_completions_cost":0.000144},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
-
- data: [DONE]
-
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 302.790792ms