diff --git a/openaicompat/language_model_hooks.go b/openaicompat/language_model_hooks.go index 88e4094d6f397051b6d4f9a3a63baf55bd34a438..6a341d70cc0ef83d39708849dc7bf9eb1a6901b7 100644 --- a/openaicompat/language_model_hooks.go +++ b/openaicompat/language_model_hooks.go @@ -1,6 +1,7 @@ package openaicompat import ( + "encoding/json" "fmt" "github.com/charmbracelet/fantasy/ai" @@ -43,8 +44,18 @@ func languagePrepareModelCall(model ai.LanguageModel, params *openaisdk.ChatComp } func languageModelExtraContent(choice openaisdk.ChatCompletionChoice) []ai.Content { - // TODO: check this - return []ai.Content{} + var content []ai.Content + reasoningData := ReasoningData{} + err := json.Unmarshal([]byte(choice.Message.RawJSON()), &reasoningData) + if err != nil { + return content + } + if reasoningData.ReasoningContent != "" { + content = append(content, ai.ReasoningContent{ + Text: reasoningData.ReasoningContent, + }) + } + return content } func extractReasoningContext(ctx map[string]any) bool { @@ -60,66 +71,53 @@ func extractReasoningContext(ctx map[string]any) bool { } func languageModelStreamExtra(chunk openaisdk.ChatCompletionChunk, yield func(ai.StreamPart) bool, ctx map[string]any) (map[string]any, bool) { - // TODO: check this - // if len(chunk.Choices) == 0 { - // return ctx, true - // } - // - // reasoningStarted := extractReasoningContext(ctx) - // - // for inx, choice := range chunk.Choices { - // reasoningData := ReasoningData{} - // err := json.Unmarshal([]byte(choice.Delta.RawJSON()), &reasoningData) - // if err != nil { - // yield(ai.StreamPart{ - // Type: ai.StreamPartTypeError, - // Error: ai.NewAIError("Unexpected", "error unmarshalling delta", err), - // }) - // return ctx, false - // } - // - // emitEvent := func(reasoningContent string) bool { - // if !reasoningStarted { - // shouldContinue := yield(ai.StreamPart{ - // Type: ai.StreamPartTypeReasoningStart, - // ID: fmt.Sprintf("%d", inx), - // }) - // if !shouldContinue { - // return false - // } - // } - // - // return yield(ai.StreamPart{ - // Type: ai.StreamPartTypeReasoningDelta, - // ID: fmt.Sprintf("%d", inx), - // Delta: reasoningContent, - // }) - // } - // if len(reasoningData.ReasoningDetails) > 0 { - // for _, detail := range reasoningData.ReasoningDetails { - // if !reasoningStarted { - // ctx[reasoningStartedCtx] = true - // } - // switch detail.Type { - // case "reasoning.text": - // return ctx, emitEvent(detail.Text) - // case "reasoning.summary": - // return ctx, emitEvent(detail.Summary) - // case "reasoning.encrypted": - // return ctx, emitEvent("[REDACTED]") - // } - // } - // } else if reasoningData.Reasoning != "" { - // return ctx, emitEvent(reasoningData.Reasoning) - // } - // if reasoningStarted && (choice.Delta.Content != "" || len(choice.Delta.ToolCalls) > 0) { - // ctx[reasoningStartedCtx] = false - // return ctx, yield(ai.StreamPart{ - // Type: ai.StreamPartTypeReasoningEnd, - // ID: fmt.Sprintf("%d", inx), - // }) - // } - // } - // return ctx, true - return nil, true + if len(chunk.Choices) == 0 { + return ctx, true + } + + reasoningStarted := extractReasoningContext(ctx) + + for inx, choice := range chunk.Choices { + reasoningData := ReasoningData{} + err := json.Unmarshal([]byte(choice.Delta.RawJSON()), &reasoningData) + if err != nil { + yield(ai.StreamPart{ + Type: ai.StreamPartTypeError, + Error: ai.NewAIError("Unexpected", "error unmarshalling delta", err), + }) + return ctx, false + } + + emitEvent := func(reasoningContent string) bool { + if !reasoningStarted { + shouldContinue := yield(ai.StreamPart{ + Type: ai.StreamPartTypeReasoningStart, + ID: fmt.Sprintf("%d", inx), + }) + if !shouldContinue { + return false + } + } + + return yield(ai.StreamPart{ + Type: ai.StreamPartTypeReasoningDelta, + ID: fmt.Sprintf("%d", inx), + Delta: reasoningContent, + }) + } + if reasoningData.ReasoningContent != "" { + if !reasoningStarted { + ctx[reasoningStartedCtx] = true + } + return ctx, emitEvent(reasoningData.ReasoningContent) + } + if reasoningStarted && (choice.Delta.Content != "" || len(choice.Delta.ToolCalls) > 0) { + ctx[reasoningStartedCtx] = false + return ctx, yield(ai.StreamPart{ + Type: ai.StreamPartTypeReasoningEnd, + ID: fmt.Sprintf("%d", inx), + }) + } + } + return ctx, true } diff --git a/openaicompat/openrouter.go b/openaicompat/openaicompat.go similarity index 93% rename from openaicompat/openrouter.go rename to openaicompat/openaicompat.go index 5345e598df48dbb1dc7359b4dfe530c0b95edf54..44e3ecfad73b23a3dfb051d0ccbab240abd6ecea 100644 --- a/openaicompat/openrouter.go +++ b/openaicompat/openaicompat.go @@ -27,8 +27,8 @@ func New(url string, opts ...Option) ai.Provider { }, languageModelOptions: []openai.LanguageModelOption{ openai.WithLanguageModelPrepareCallFunc(languagePrepareModelCall), - // openai.WithLanguageModelStreamExtraFunc(languageModelStreamExtra), - // openai.WithLanguageModelExtraContentFunc(languageModelExtraContent), + openai.WithLanguageModelStreamExtraFunc(languageModelStreamExtra), + openai.WithLanguageModelExtraContentFunc(languageModelExtraContent), }, } for _, o := range opts { diff --git a/openaicompat/provider_options.go b/openaicompat/provider_options.go index 2a7489bf2cb9bc5b6e4c6e7d7d122a46cf6582bb..4e12800cd8c09c53d01bfd94705c83ec8b39af46 100644 --- a/openaicompat/provider_options.go +++ b/openaicompat/provider_options.go @@ -10,6 +10,10 @@ type ProviderOptions struct { ReasoningEffort *openai.ReasoningEffort `json:"reasoning_effort"` } +type ReasoningData struct { + ReasoningContent string `json:"reasoning_content"` +} + func (*ProviderOptions) Options() {} func NewProviderOptions(opts *ProviderOptions) ai.ProviderOptions { diff --git a/providertests/common_test.go b/providertests/common_test.go index 124000fe9947e1e6bf463088a8946f8286ff0bb3..e4326e31ab108e822f5ea206f899fbd284ae33b5 100644 --- a/providertests/common_test.go +++ b/providertests/common_test.go @@ -257,22 +257,42 @@ func testThinking(t *testing.T, pairs []builderPair, thinkChecks func(*testing.T result, err := agent.Generate(t.Context(), ai.AgentCall{ Prompt: "What's the weather in Florence, Italy?", ProviderOptions: pair.providerOptions, - // ProviderOptions: ai.ProviderOptions{ - // "anthropic": &anthropic.ProviderOptions{ - // Thinking: &anthropic.ThinkingProviderOption{ - // BudgetTokens: 10_000, - // }, - // }, - // "google": &google.ProviderOptions{ - // ThinkingConfig: &google.ThinkingConfig{ - // ThinkingBudget: ai.IntOption(100), - // IncludeThoughts: ai.BoolOption(true), - // }, - // }, - // "openai": &openai.ProviderOptions{ - // ReasoningEffort: openai.ReasoningEffortOption(openai.ReasoningEffortMedium), - // }, - // }, + }) + require.NoError(t, err, "failed to generate") + + want1 := "Florence" + want2 := "40" + got := result.Response.Content.Text() + require.True(t, strings.Contains(got, want1) && strings.Contains(got, want2), "unexpected response: got %q, want %q %q", got, want1, want2) + + thinkChecks(t, result) + }) + t.Run("thinking-streaming-"+pair.name, func(t *testing.T) { + r := newRecorder(t) + + languageModel, err := pair.builder(r) + require.NoError(t, err, "failed to build language model") + + type WeatherInput struct { + Location string `json:"location" description:"the city"` + } + + weatherTool := ai.NewAgentTool( + "weather", + "Get weather information for a location", + func(ctx context.Context, input WeatherInput, _ ai.ToolCall) (ai.ToolResponse, error) { + return ai.NewTextResponse("40 C"), nil + }, + ) + + agent := ai.NewAgent( + languageModel, + ai.WithSystemPrompt("You are a helpful assistant"), + ai.WithTools(weatherTool), + ) + result, err := agent.Stream(t.Context(), ai.AgentStreamCall{ + Prompt: "What's the weather in Florence, Italy?", + ProviderOptions: pair.providerOptions, }) require.NoError(t, err, "failed to generate") diff --git a/providertests/openaicompat_test.go b/providertests/openaicompat_test.go index c154ec686ed0b594d5b66739a7dd0155aba073ca..e1694ad0bd5a29a53458522bc8040cb47d574118 100644 --- a/providertests/openaicompat_test.go +++ b/providertests/openaicompat_test.go @@ -6,7 +6,9 @@ import ( "testing" "github.com/charmbracelet/fantasy/ai" + "github.com/charmbracelet/fantasy/openai" "github.com/charmbracelet/fantasy/openaicompat" + "github.com/stretchr/testify/require" "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder" ) @@ -15,7 +17,31 @@ func TestOpenAICompatibleCommon(t *testing.T) { {"xai-grok-4-fast", builderXAIGrok4Fast, nil}, {"xai-grok-code-fast", builderXAIGrokCodeFast, nil}, {"groq-kimi-k2", builderGroq, nil}, + {"zai-glm-4.5", builderZAIGLM45, nil}, }) + opts := ai.ProviderOptions{ + openaicompat.Name: &openaicompat.ProviderOptions{ + ReasoningEffort: openai.ReasoningEffortOption(openai.ReasoningEffortHigh), + }, + } + testThinking(t, []builderPair{ + {"xai-grok-3-mini", builderXAIGrok3Mini, opts}, + {"zai-glm-4.5", builderZAIGLM45, opts}, + }, testOpenAICompatThinking) +} + +func testOpenAICompatThinking(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) } func builderXAIGrokCodeFast(r *recorder.Recorder) (ai.LanguageModel, error) { @@ -36,6 +62,24 @@ func builderXAIGrok4Fast(r *recorder.Recorder) (ai.LanguageModel, error) { return provider.LanguageModel("grok-4-fast") } +func builderXAIGrok3Mini(r *recorder.Recorder) (ai.LanguageModel, error) { + provider := openaicompat.New( + "https://api.x.ai/v1", + openaicompat.WithAPIKey(os.Getenv("XAI_API_KEY")), + openaicompat.WithHTTPClient(&http.Client{Transport: r}), + ) + return provider.LanguageModel("grok-3-mini") +} + +func builderZAIGLM45(r *recorder.Recorder) (ai.LanguageModel, error) { + provider := openaicompat.New( + "https://api.z.ai/api/coding/paas/v4", + openaicompat.WithAPIKey(os.Getenv("ZAI_API_KEY")), + openaicompat.WithHTTPClient(&http.Client{Transport: r}), + ) + return provider.LanguageModel("glm-4.5") +} + func builderGroq(r *recorder.Recorder) (ai.LanguageModel, error) { provider := openaicompat.New( "https://api.groq.com/openai/v1", diff --git a/providertests/openrouter_test.go b/providertests/openrouter_test.go index f033f3c49d0786e7c40ceee8d0ecb547f18fea68..643c2605abe1de0c971d94eea8a6aeac02d8a6f8 100644 --- a/providertests/openrouter_test.go +++ b/providertests/openrouter_test.go @@ -2,6 +2,7 @@ package providertests import ( "context" + "fmt" "net/http" "os" "strconv" @@ -10,7 +11,6 @@ import ( "github.com/charmbracelet/fantasy/ai" "github.com/charmbracelet/fantasy/openrouter" - "github.com/google/uuid" "github.com/stretchr/testify/require" "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder" ) @@ -97,8 +97,10 @@ func TestWithUniqueToolCallIDs(t *testing.T) { require.Contains(t, finalText, "6", "expected response to contain '6', got: %q", finalText) } + id := 0 generateIDFunc := func() string { - return "test-" + uuid.NewString() + id += 1 + return fmt.Sprintf("test-%d", id) } t.Run("unique tool call ids", func(t *testing.T) { diff --git a/providertests/testdata/TestAnthropicCommon/thinking-streaming-claude-sonnet-4.yaml b/providertests/testdata/TestAnthropicCommon/thinking-streaming-claude-sonnet-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a907de0a9d50abad5d5a1a94a70c0b680a14e7f9 --- /dev/null +++ b/providertests/testdata/TestAnthropicCommon/thinking-streaming-claude-sonnet-4.yaml @@ -0,0 +1,157 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 562 + 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"}],"stream":true}' + 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 + body: |+ + event: message_start + data: {"type":"message_start","message":{"id":"msg_01D12QbeYmBERw387x1F4vHB","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[],"stop_reason":null,"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":6,"service_tier":"standard"}} } + + event: content_block_start + data: {"type":"content_block_start","index":0,"content_block":{"type":"thinking","thinking":"","signature":""} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":"The user is asking for"} } + + event: ping + data: {"type": "ping"} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" weather information for Florence, Italy. I have access"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" to a weather function that takes a location parameter. The user"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" has provided a specific location: \"Florence, Italy\". I have"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" all the required parameters to make this function call."} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"signature_delta","signature":"EqsDCkYICBgCKkBZgA2aLmZQDmRH4RVCT4iXR95b6oYoMjp4e2kPdf2Po5wKmOD2b4fyCcDgesqaf1am+tK5ghnLAfrPp0kAa4ZmEgz7xJ7dsX+9kX6x5sQaDKwfxRyHgF5D2PiztSIwGQ1HRyC/mwdt3c9Qu4E1xM0NfpBITMx9H4Eao8fquBpONVcKbndPXNMR1tM9GNP9KpIChms34P/x6SOMvZMtnXiMldFVeH/NQGzJkXpMYM0MIri6Mw2bsPdJQ9QhCDB5HFNpKPqbTjj4BS0ElqaVG6XL5INBVXMqhrvuLrfRFb3Q8azDwUSyUvsfGvdbQ7igv7mRD7gbkVb7CbKdxo6rz3D3lcBxSz9ssrGoviNlS23B0RBI8wmje1a40l0GS7uRxTXH70ZHRs6nOmsmXEUL+JOS3rMdpw8+SKl9r1JGHdur3Biyhy2/HwBnJUkfiOEEEh/QBc7UaANcLpuS0r4WJjC+PRiKhCKlHGNYdjU6d5bQOX1EcTqlvpxju+9Dv0vqXoPNObl3IUPAXmeReG/9aUO28vf52CH8+rafZ2cDYmjLpQrTpBgB"} } + + event: content_block_stop + data: {"type":"content_block_stop","index":0 } + + event: content_block_start + data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_01VDunTVNHZwPF7WfabdESCC","name":"weather","input":{}} } + + event: content_block_delta + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""}} + + event: content_block_delta + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"loca"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"ti"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"on\": \"Flore"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"nce, Ital"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"y\"}"} } + + event: content_block_stop + data: {"type":"content_block_stop","index":1} + + event: message_delta + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":423,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":112}} + + event: message_stop + data: {"type":"message_stop" } + + headers: + Content-Type: + - text/event-stream; charset=utf-8 + status: 200 OK + code: 200 + duration: 1.456683208s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1733 + host: "" + body: '{"max_tokens":8096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EqsDCkYICBgCKkBZgA2aLmZQDmRH4RVCT4iXR95b6oYoMjp4e2kPdf2Po5wKmOD2b4fyCcDgesqaf1am+tK5ghnLAfrPp0kAa4ZmEgz7xJ7dsX+9kX6x5sQaDKwfxRyHgF5D2PiztSIwGQ1HRyC/mwdt3c9Qu4E1xM0NfpBITMx9H4Eao8fquBpONVcKbndPXNMR1tM9GNP9KpIChms34P/x6SOMvZMtnXiMldFVeH/NQGzJkXpMYM0MIri6Mw2bsPdJQ9QhCDB5HFNpKPqbTjj4BS0ElqaVG6XL5INBVXMqhrvuLrfRFb3Q8azDwUSyUvsfGvdbQ7igv7mRD7gbkVb7CbKdxo6rz3D3lcBxSz9ssrGoviNlS23B0RBI8wmje1a40l0GS7uRxTXH70ZHRs6nOmsmXEUL+JOS3rMdpw8+SKl9r1JGHdur3Biyhy2/HwBnJUkfiOEEEh/QBc7UaANcLpuS0r4WJjC+PRiKhCKlHGNYdjU6d5bQOX1EcTqlvpxju+9Dv0vqXoPNObl3IUPAXmeReG/9aUO28vf52CH8+rafZ2cDYmjLpQrTpBgB","thinking":"The user is asking for weather information for Florence, Italy. I have access to a weather function that takes a location parameter. The user has provided a specific location: \"Florence, Italy\". I have all the required parameters to make this function call.","type":"thinking"},{"id":"toolu_01VDunTVNHZwPF7WfabdESCC","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01VDunTVNHZwPF7WfabdESCC","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"}],"stream":true}' + 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 + body: |+ + event: message_start + data: {"type":"message_start","message":{"id":"msg_01MXNZyH3T2NqTQQXgW5YHm9","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":550,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":2,"service_tier":"standard"}} } + + event: content_block_start + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The current"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" weather in Florence, Italy is 40°C (104°F)."} } + + event: ping + data: {"type": "ping"} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" That's quite hot! Make"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" sure to stay hydrated and seek"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" shade if you're planning to be out"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"doors."} } + + event: content_block_stop + data: {"type":"content_block_stop","index":0 } + + event: message_delta + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":550,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":43} } + + event: message_stop + data: {"type":"message_stop" } + + headers: + Content-Type: + - text/event-stream; charset=utf-8 + status: 200 OK + code: 200 + duration: 1.532076875s diff --git a/providertests/testdata/TestGoogleCommon/thinking-streaming-gemini-2.5-flash.yaml b/providertests/testdata/TestGoogleCommon/thinking-streaming-gemini-2.5-flash.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1995ff01ddefabae326e2aba065c71a7fa855427 --- /dev/null +++ b/providertests/testdata/TestGoogleCommon/thinking-streaming-gemini-2.5-flash.yaml @@ -0,0 +1,65 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 550 + host: generativelanguage.googleapis.com + body: | + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"}],"generationConfig":{"thinkingConfig":{"includeThoughts":true,"thinkingBudget":128}},"systemInstruction":{"parts":[{"text":"You are a helpful assistant"}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"STRING"}},"required":["location"],"type":"OBJECT"}}]}]} + form: + alt: + - sse + headers: + Content-Type: + - application/json + User-Agent: + - google-genai-sdk/1.23.0 gl-go/go1.25.0 + url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"**Analyzing Weather Request**\\n\\nI've determined the user wants the weather in Florence, Italy. The \\\"weather\\\" tool is appropriate, requiring a location. I'll pass \\\"Florence, Italy\\\" as the location argument to retrieve the information.\\n\\n\\n\",\"thought\": true}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 54,\"totalTokenCount\": 116,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 62},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"sxfVaN-UPMDBxN8P4beVoAE\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiQB0e2Kb6DT1heRPFG6z9Ix2zCxLHgAf41g/zMeYwdVX0LU79MKZwHR7YpvF6o2OSX1/LIKH5h310x+BUuKnBVHqMILmM0sxwbqc9mkee/o2Ylfor4Wh0l4dPZ37nrUZ7D3gCJdk9vyxoXVmn0iRx1jnuA9My/7/gEovP8fzIs0fi4G/DZDLCI+A8ICsHwK3gEB0e2Kb8FjikH4HmeiWgdzIS42mSil6ZSEyVqloLwhQ25vcVGnQLGTMFunfmwSUy3DDRTzvgj0kbcLEw2f1YMxY7S6j7LbZcCls1eB9yT7bdIGiRrq+S9gfxSy87iwOveeim1A3yQtsrkonV3cZj4a/MEAZ17IP7BZubf/Wube7iBqhWU6fcCZE40juF2QmjtAkMJDMeoJGyqcERPLSDLr1ceruHN9s2Pe5KQCT5yHb1r24mWIQMwEIbMlevmq9VKLKMZJnSEhfk0GDN/VPGsFhIC7WRUAFctUWkgIeNk=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 14,\"totalTokenCount\": 130,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 62},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"sxfVaN-UPMDBxN8P4beVoAE\"}\r\n\r\n" + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.95331225s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 776 + host: generativelanguage.googleapis.com + body: | + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"weather","name":"weather"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"weather","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"thinkingConfig":{"includeThoughts":true,"thinkingBudget":128}},"systemInstruction":{"parts":[{"text":"You are a helpful assistant"}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"STRING"}},"required":["location"],"type":"OBJECT"}}]}]} + form: + alt: + - sse + headers: + Content-Type: + - application/json + User-Agent: + - google-genai-sdk/1.23.0 gl-go/go1.25.0 + url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The weather in Florence\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 84,\"candidatesTokenCount\": 4,\"totalTokenCount\": 88,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 84}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"tRfVaIPlGueD7M8PwPTAcQ\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", Italy is 40 C.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 84,\"candidatesTokenCount\": 12,\"totalTokenCount\": 96,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 84}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"tRfVaIPlGueD7M8PwPTAcQ\"}\r\n\r\n" + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 513.016208ms diff --git a/providertests/testdata/TestGoogleCommon/thinking-streaming-gemini-2.5-pro.yaml b/providertests/testdata/TestGoogleCommon/thinking-streaming-gemini-2.5-pro.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1daf0a3c008720eb0016144336623a041b5e8b57 --- /dev/null +++ b/providertests/testdata/TestGoogleCommon/thinking-streaming-gemini-2.5-pro.yaml @@ -0,0 +1,65 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 550 + host: generativelanguage.googleapis.com + body: | + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"}],"generationConfig":{"thinkingConfig":{"includeThoughts":true,"thinkingBudget":128}},"systemInstruction":{"parts":[{"text":"You are a helpful assistant"}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"STRING"}},"required":["location"],"type":"OBJECT"}}]}]} + form: + alt: + - sse + headers: + Content-Type: + - application/json + User-Agent: + - google-genai-sdk/1.23.0 gl-go/go1.25.0 + url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"**Analyzing Weather Requests**\\n\\nI've homed in on the user's request for weather in Florence, Italy. It seems a suitable fit for the `weather.get_weather` tool, which explicitly accepts a `location` parameter.\\n\\n\\n\",\"thought\": true}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 54,\"totalTokenCount\": 118,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 64},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"txfVaNT4L--C7M8P4Yuh8QY\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiIB0e2Kb79Nza7MUoZKPRTN0m6WyO/63vxTwODwo81Ig+H+CmcB0e2KbwuYIr2eUWu8pgts9kBXl3WVhG5JRPpVxJG8NXycxt/io0jcbnLZBi83Ycc6wS15pIixgz/cBWmwgrG1VjWG4IznehdZRhHVlkX2hxDzc/L+aokNAjp0xhKodmQegLi6PhtECo0BAdHtim8PjswX89dj6fBVtKSS2p/FL9aiyXzmC6gzLrJGm6+4t1qLO7q7fB4Af0ZCsvtsDhmfFq8xUnpzqShyQCf6na3aPnh4z62C8LyRvoP0z5biXV5J/CDSSMDyO+c4o/lZ4YLxxUY30v3MMnzmXyKiBePvqSU8nHg8nRJnnlgtMFx0iNxmDDnludTBCmgB0e2Kb8xuJL3mVZZoQhIh1TMVqCsh5QY6cLdhrnioNJxj5hel7CRxmu7pSnT6+Z5v75stepWNj9z2wCu4TNSoeYkGy3O3WLU8KJ6uGSspP07NIWKK7vHigBM4F/p1ZaNSDCcN/8/NTw==\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 14,\"totalTokenCount\": 132,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 64},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"txfVaNT4L--C7M8P4Yuh8QY\"}\r\n\r\n" + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 3.529219292s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 776 + host: generativelanguage.googleapis.com + body: | + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"weather","name":"weather"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"weather","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"thinkingConfig":{"includeThoughts":true,"thinkingBudget":128}},"systemInstruction":{"parts":[{"text":"You are a helpful assistant"}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"STRING"}},"required":["location"],"type":"OBJECT"}}]}]} + form: + alt: + - sse + headers: + Content-Type: + - application/json + User-Agent: + - google-genai-sdk/1.23.0 gl-go/go1.25.0 + url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"It\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 84,\"candidatesTokenCount\": 1,\"totalTokenCount\": 85,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 84}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"uxfVaPTdEveSxN8PptidsQE\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" is 40 C in Florence, Italy.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 84,\"candidatesTokenCount\": 11,\"totalTokenCount\": 95,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 84}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"uxfVaPTdEveSxN8PptidsQE\"}\r\n\r\n" + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 2.144105333s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/multi_tool_streaming_zai-glm-4.5.yaml b/providertests/testdata/TestOpenAICompatibleCommon/multi_tool_streaming_zai-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e545422476e9a2f22dab44a9b0b92098493adcbc --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/multi_tool_streaming_zai-glm-4.5.yaml @@ -0,0 +1,411 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 849 + 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":"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"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" numbers"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" instructed"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" call"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" b"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" add"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":".\n"}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"tool_calls":[{"id":"call_45efa0f70be44aecae811210","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\": 2, \"b\": 3}"}}]}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"tool_calls":[{"id":"call_be460d113b7f48bea4bd9987","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\": 2, \"b\": 3}"}}]}}]} + + data: {"id":"20250925181930e0f0a20614da4518","created":1758795570,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":282,"completion_tokens":106,"total_tokens":388,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 708.749792ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1349 + 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_45efa0f70be44aecae811210","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_be460d113b7f48bea4bd9987","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_45efa0f70be44aecae811210","role":"tool"},{"content":"6","tool_call_id":"call_be460d113b7f48bea4bd9987","role":"tool"}],"model":"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"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asked"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" numbers"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" instructed"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" results"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Addition"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" +"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"5"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Multip"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"lication"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ×"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"6"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" present"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" results"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clearly"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" results"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" of adding"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" multiplying"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" are"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Add"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"ition"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"**:"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" +"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"5"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Multip"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"lication"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"**:"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ×"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"6"}}]} + + data: {"id":"20250925181932d762b041ff234e63","created":1758795573,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":356,"completion_tokens":111,"total_tokens":467,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 713.661542ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/multi_tool_zai-glm-4.5.yaml b/providertests/testdata/TestOpenAICompatibleCommon/multi_tool_zai-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..07ce25a832446ec78c2e2f1965d5476b6695bb51 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/multi_tool_zai-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: 812 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"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"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"choices":[{"finish_reason":"tool_calls","index":0,"message":{"content":"\n\nI''ll add and multiply the numbers 2 and 3 for you.\n","reasoning_content":"The user wants me to add and multiply the numbers 2 and 3. I need to use both the add and multiply functions with these two numbers.\n\nFor addition: add(2, 3)\nFor multiplication: multiply(2, 3)\n\nI''ll call both functions as requested.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"id":"call_-8307196618162840255","index":0,"type":"function"},{"function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"id":"call_-8307196618162840254","index":1,"type":"function"}]}}],"created":1758795567,"id":"2025092518192459228fd8ef9141ad","model":"glm-4.5","request_id":"2025092518192459228fd8ef9141ad","usage":{"completion_tokens":120,"prompt_tokens":286,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":406}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.931834166s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1296 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","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_-8307196618162840255","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_-8307196618162840254","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_-8307196618162840255","role":"tool"},{"content":"6","tool_call_id":"call_-8307196618162840254","role":"tool"}],"model":"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"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"choices":[{"finish_reason":"stop","index":0,"message":{"content":"\n\nThe results of adding and multiplying 2 and 3 are:\n\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6","reasoning_content":"The user asked me to add and multiply the numbers 2 and 3. I used both the add and multiply functions as required. The results are:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6\n\nI should present both results clearly to the user.","role":"assistant"}}],"created":1758795569,"id":"20250925181927e1d3b40f253144a8","model":"glm-4.5","request_id":"20250925181927e1d3b40f253144a8","usage":{"completion_tokens":108,"prompt_tokens":360,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":468}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.793087166s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/simple_streaming_zai-glm-4.5.yaml b/providertests/testdata/TestOpenAICompatibleCommon/simple_streaming_zai-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2a22398d2c6df0db8c0ab005af782be6d521c236 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/simple_streaming_zai-glm-4.5.yaml @@ -0,0 +1,182 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 211 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"glm-4.5","max_tokens":4000,"stream_options":{"include_usage":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" In"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hello"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" typically"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translated"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-speaking"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" countries"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portugal"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Angola"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Moz"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ambique"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" other"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-speaking"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nations"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'ll"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translation"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Hi","reasoning_content":""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning_content":""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese","reasoning_content":""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning_content":""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning_content":""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"á","reasoning_content":""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\".","reasoning_content":""}}]} + + data: {"id":"20250925182035d8050547d23f4476","created":1758795635,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":18,"completion_tokens":75,"total_tokens":93,"prompt_tokens_details":{"cached_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.011773917s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/simple_zai-glm-4.5.yaml b/providertests/testdata/TestOpenAICompatibleCommon/simple_zai-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7fae50f5c7beeb0f3bff5ce830dedbf4b0b02070 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/simple_zai-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: 157 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"glm-4.5","max_tokens":4000}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"choices":[{"finish_reason":"stop","index":0,"message":{"content":"Olá!","reasoning_content":"The user is asking me to say \"hi\" in Portuguese. In Portuguese, \"hi\" or \"hello\" is typically translated as \"Olá\". I should provide this translation directly.","role":"assistant"}}],"created":1758795552,"id":"20250925181910fe768933728f46c6","model":"glm-4.5","request_id":"20250925181910fe768933728f46c6","usage":{"completion_tokens":43,"prompt_tokens":18,"prompt_tokens_details":{"cached_tokens":0},"total_tokens":61}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.617081542s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/thinking-streaming-xai-grok-3-mini.yaml b/providertests/testdata/TestOpenAICompatibleCommon/thinking-streaming-xai-grok-3-mini.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f95aefc419545a1da1621c469b2fa1535c25f02d --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/thinking-streaming-xai-grok-3-mini.yaml @@ -0,0 +1,1163 @@ +--- +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":"grok-3-mini","reasoning_effort":"high","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"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"First","role":"assistant"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" asking"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" available"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" called"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" that"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" can"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" get"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794842,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" description"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Get"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" require"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" string"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" described"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" as"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" has"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provided"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" This"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" seems"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" specify"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" country"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" sufficient"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameter"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" might"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" expect"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" just"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" name"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" but"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clearly"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" indicates"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" so"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" can"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" infer"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" that"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" To"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" precise"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" use"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" as"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" but"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" including"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" country"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" might"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" helpful"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" if"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" can"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" handle"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameter"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" described"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" as"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" so"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I'll"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" use"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794843,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" or"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" perhaps"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" if"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it's"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" acceptable"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Since"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it's"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" string"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" can"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" pass"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" directly"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"All"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" required"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" are"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provided"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" given"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" No"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" missing"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" or"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" unclear"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parts"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" if"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" can"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" advance"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user's"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" request"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Here"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" directly"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" addresses"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" query"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" format"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" use"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" tags"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" JSON"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" format"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" {\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_name"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" {\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"parameter"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"argument"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"}"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"}\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"So"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" value"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Response"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" guidelines"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Keep"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794844,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clear"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" verbose"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" extra"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" text"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" unless"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" necessary"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Since"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I'm"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" calling"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" my"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" just"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" contain"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" within"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" tags"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"After"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" calling"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" multi"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"-turn"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" conversation"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" might"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" handle"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" but"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" now"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" first"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" step"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Decision"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Call"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Final"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"<"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">{\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" {\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"}}\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" think"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" that's"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" No"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" additional"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" text"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794845,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_86388636","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"06b895b5-7f64-fda9-9a25-eae80c58a767_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[],"usage":{"prompt_tokens":288,"completion_tokens":27,"total_tokens":726,"prompt_tokens_details":{"text_tokens":288,"audio_tokens":0,"image_tokens":0,"cached_tokens":287},"completion_tokens_details":{"reasoning_tokens":411,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_a6fbae1a97"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 458.276541ms + - 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_86388636","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_86388636","role":"tool"}],"model":"grok-3-mini","reasoning_effort":"high","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"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" about"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" called"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" correct"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" returned"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" C"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" assume"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" means"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" degrees"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Celsius"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" respond"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" My"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clear"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" verbose"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Since"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" has"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" been"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" made"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" result"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" now"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provide"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" answer"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" directly"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794846,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" available"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" actions"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" only"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" include"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I've"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" already"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" used"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" No"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" further"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" calls"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" are"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" needed"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" as"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" request"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" fulfilled"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Final"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Inform"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" of"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" straightforward"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" way"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" currently"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"°C"}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_a6fbae1a97"} + + data: {"id":"0f6cda06-71ff-e409-d9c4-b87c3f622342_us-east-1","object":"chat.completion.chunk","created":1758794847,"model":"grok-3-mini-high","choices":[],"usage":{"prompt_tokens":332,"completion_tokens":13,"total_tokens":465,"prompt_tokens_details":{"text_tokens":332,"audio_tokens":0,"image_tokens":0,"cached_tokens":311},"completion_tokens_details":{"reasoning_tokens":120,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_a6fbae1a97"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 162.68675ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/thinking-streaming-zai-glm-4.5.yaml b/providertests/testdata/TestOpenAICompatibleCommon/thinking-streaming-zai-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bda80461fb50a3d806668df50fe8a6d36fb36dd8 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/thinking-streaming-zai-glm-4.5.yaml @@ -0,0 +1,341 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 512 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"glm-4.5","reasoning_effort":"high","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"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" access"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" get"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" requires"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"location"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" has"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specified"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" call"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" check"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":".\n"}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"tool_calls":[{"id":"call_db9178c4859a49d799521c00","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence, Italy\"}"}}]}}]} + + data: {"id":"202509251819450b8e121651934f8d","created":1758795585,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":179,"completion_tokens":94,"total_tokens":273,"prompt_tokens_details":{"cached_tokens":178}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 662.9685ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 834 + 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_db9178c4859a49d799521c00","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_db9178c4859a49d799521c00","role":"tool"}],"model":"glm-4.5","reasoning_effort":"high","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"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" C"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" seems"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Celsius"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clear"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" way"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" current"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"40"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"°C"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ("}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"104"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"°F"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":")."}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" That"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" quite"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" hot"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} + + data: {"id":"2025092518194842ff21ba0fb84843","created":1758795588,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":219,"completion_tokens":62,"total_tokens":281,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 750.551041ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/thinking-xai-grok-3-mini.yaml b/providertests/testdata/TestOpenAICompatibleCommon/thinking-xai-grok-3-mini.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9413130ca3b7fbf6445d4c395722c5428f972a03 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/thinking-xai-grok-3-mini.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 462 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"grok-3-mini","reasoning_effort":"high","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"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"c252909e-30f3-f72d-b31e-96f598e4e7bc_us-east-1","object":"chat.completion","created":1758794759,"model":"grok-3-mini-high","choices":[{"index":0,"message":{"role":"assistant","content":"","reasoning_content":"First, the user is asking for the weather in Florence, Italy. I have an available function called \"weather\" that can get weather information for a location. The function requires a \"location\" parameter, which is described as \"the city\".\n\nThe user''s query specifies \"Florence, Italy\". This provides both the city name and the country, but the function parameter is just \"location\" described as \"the city\". I need to see if this is inferable.\n\nThe description says \"the city\", so I should probably use \"Florence\" as the location, since it''s the city name. Including the country might not be necessary, but it could help if there are multiple cities with the same name. However, the function parameter is defined as a string for the city, and it doesn''t specify handling country or other details. To keep it simple, I can use \"Florence\" as the location.\n\nThe required parameters are [\"location\"], and it''s provided. The location is \"Florence\", and since the user specified \"Italy\", it''s clear which Florence they mean. I don''t need to ask for clarification.\n\nThe instruction says: \"If the user''s query can be addressed using an available function, and all required parameters are provided or obviously inferable, trigger a function call.\" Here, the parameter is inferable as \"Florence\".\n\nI should call the function in the specified JSON format within tags.\n\nFunction call format: {\"action\": \"weather\", \"action_input\": {\"location\": \"Florence\"}}\n\nI need to decide if I should include \"Italy\" in the location. The parameter is described as \"the city\", so probably just \"Florence\" is sufficient. If the function needs more specificity, it might handle it, but based on the description, I''ll stick to what''s required.\n\nAfter calling the function, if this were a multi-turn conversation, I might need to handle the response, but the instruction is to call functions to advance the request. Since this is likely the first step, I''ll call the weather function.\n\nMy response should only contain the function call if I''m deciding to call it, or otherwise respond normally. In this case, I''m calling a function, so I should output only the tag with the JSON.\n\nThe instruction says: \"You are only permitted to use the tag in your response only if you have made the decision to call a function.\" And \"Keep your response to user clear; please do not make your response verbose!\"\n\nSo, I should not add any extra text; just the function call.\n\nFinal decision: Call the weather function with location as \"Florence\".","tool_calls":[{"id":"call_83674222","function":{"name":"weather","arguments":"{\"location\":\"Florence\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":288,"completion_tokens":25,"total_tokens":845,"prompt_tokens_details":{"text_tokens":288,"audio_tokens":0,"image_tokens":0,"cached_tokens":4},"completion_tokens_details":{"reasoning_tokens":532,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_a6fbae1a97"}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 5.270359416s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 675 + 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_83674222","function":{"arguments":"{\"location\":\"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_83674222","role":"tool"}],"model":"grok-3-mini","reasoning_effort":"high","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"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"0e8b2650-9b58-7a68-0546-5d76ffade4c2_us-east-1","object":"chat.completion","created":1758794765,"model":"grok-3-mini-high","choices":[{"index":0,"message":{"role":"assistant","content":"The weather in Florence, Italy is 40°C.","reasoning_content":"First, the user asked: \"What''s the weather in Florence, Italy?\" I''ve already made a function call to the \"weather\" action with the location \"Florence\". The response from the function is \"40 C\", which I assume means 40 degrees Celsius.\n\nNow, in this multi-turn conversation, I need to continue based on the function''s response. The function call was successful, and I have the weather information. My role is to be a helpful assistant, so I should provide the information to the user in a clear and concise manner.\n\nThe available instructions say: \"Keep your response to user clear; please do not make your response verbose!\" So, I should be direct.\n\nAlso, the function call response is just \"40 C\", but the user specified \"Florence, Italy\". I should confirm or present this information properly, perhaps including the location for clarity.\n\nI don''t need to call another function unless more information is needed or the request isn''t fulfilled. Here, the request was for the weather in Florence, Italy, and I''ve got the data, so I can respond directly.\n\nMy response should not include any verbose text. Just provide the weather information.\n\nFinally, I should not use the tag unless I''m calling a function. In this case, I''m not calling any function; I''m responding with the result.\n\nSo, a clear response could be: \"The weather in Florence, Italy is 40°C.\"\n\nThe function response is \"40 C\", which might be shorthand for Celsius. I should use the standard symbol °C for clarity.\n\nEnsure the response is user-friendly.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":330,"completion_tokens":11,"total_tokens":660,"prompt_tokens_details":{"text_tokens":330,"audio_tokens":0,"image_tokens":0,"cached_tokens":283},"completion_tokens_details":{"reasoning_tokens":319,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_a6fbae1a97"}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 2.982462291s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/thinking-zai-glm-4.5.yaml b/providertests/testdata/TestOpenAICompatibleCommon/thinking-zai-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f0f97f9643a4199844e8022ce32a77990d22505a --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/thinking-zai-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: 458 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"glm-4.5","reasoning_effort":"high","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"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"choices":[{"finish_reason":"tool_calls","index":0,"message":{"content":"\n\nI''ll get the weather information for Florence, Italy for you.\n","reasoning_content":"The user is asking for the weather in Florence, Italy. I have access to a weather function that takes a location parameter. The user has specified \"Florence, Italy\" as the location, so I have all the required parameters to make the function call.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"id":"call_-8307179507012576275","index":0,"type":"function"}]}}],"created":1758795577,"id":"2025092518193524c7fcd1b80e4ad7","model":"glm-4.5","request_id":"2025092518193524c7fcd1b80e4ad7","usage":{"completion_tokens":85,"prompt_tokens":179,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":264}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.374119083s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 783 + 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 get the weather information for Florence, Italy for you.\n","tool_calls":[{"id":"call_-8307179507012576275","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_-8307179507012576275","role":"tool"}],"model":"glm-4.5","reasoning_effort":"high","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"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"choices":[{"finish_reason":"stop","index":0,"message":{"content":"\n\nThe current weather in Florence, Italy is 40°C (104°F). That''s quite hot!","reasoning_content":"The function returned \"40 C\" which is the weather information for Florence, Italy. This appears to be the temperature in Celsius. I should provide this information to the user in a clear and helpful way.","role":"assistant"}}],"created":1758795584,"id":"20250925181938b2376e3f7fd74cc4","model":"glm-4.5","request_id":"20250925181938b2376e3f7fd74cc4","usage":{"completion_tokens":66,"prompt_tokens":220,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":286}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 6.861315834s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/tool_streaming_zai-glm-4.5.yaml b/providertests/testdata/TestOpenAICompatibleCommon/tool_streaming_zai-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bb2ddb4664556f3e20c0c1366dc8c04e10303757 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/tool_streaming_zai-glm-4.5.yaml @@ -0,0 +1,405 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 503 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" access"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" requires"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"location"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" has"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specified"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Italy"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" exact"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" value"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" when"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" calling"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" get"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" information"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":".\n"}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"tool_calls":[{"id":"call_03cb5929634948f0b7806908","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence,Italy\"}"}}]}}]} + + data: {"id":"20250925181919f331f993c2f6477e","created":1758795559,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":179,"completion_tokens":90,"total_tokens":269,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 709.364958ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 835 + 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 get the weather information for Florence, Italy for you.\n","tool_calls":[{"id":"call_03cb5929634948f0b7806908","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_03cb5929634948f0b7806908","role":"tool"}],"model":"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"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" C"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" indicates"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" current"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" degrees"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Celsius"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" which"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" quite"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hot"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clear"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and helpful"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" way"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" current"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"40"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"°C"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ("}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"104"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"°F"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":")."}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" That"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" quite"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" hot"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" It"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" a"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" very"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" warm"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" day"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" there"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" so"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" if"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'re"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" planning"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" visit"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" make"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" sure"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" stay"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" seek"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" shade"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" when"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" possible"}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} + + data: {"id":"202509251819216f2b9b3029444d43","created":1758795561,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":220,"completion_tokens":99,"total_tokens":319,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 730.106166ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/tool_zai-glm-4.5.yaml b/providertests/testdata/TestOpenAICompatibleCommon/tool_zai-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..42736fc38cefe34c7bad3dd4496801709754b32a --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/tool_zai-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: 449 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"choices":[{"finish_reason":"tool_calls","index":0,"message":{"content":"\n\nI''ll check the weather in Florence, Italy for you.\n","reasoning_content":"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 value as provided by the user for the location parameter.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"id":"call_-8307219707908354744","index":0,"type":"function"}]}}],"created":1758795556,"id":"20250925181915c06ae89914d14803","model":"glm-4.5","request_id":"20250925181915c06ae89914d14803","usage":{"completion_tokens":89,"prompt_tokens":179,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":268}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.310922292s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 762 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\n\nI''ll check the weather in Florence, Italy for you.\n","tool_calls":[{"id":"call_-8307219707908354744","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_-8307219707908354744","role":"tool"}],"model":"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"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.3.0 + url: https://api.z.ai/api/coding/paas/v4/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"choices":[{"finish_reason":"stop","index":0,"message":{"content":"\n\nThe weather in Florence, Italy is currently 40°C. That''s quite hot!","reasoning_content":"The weather function returned a result showing 40 C for Florence, Italy. This seems like a very high temperature, but I should report the result as provided by the function.","role":"assistant"}}],"created":1758795558,"id":"20250925181917fb13220f9015421a","model":"glm-4.5","request_id":"20250925181917fb13220f9015421a","usage":{"completion_tokens":57,"prompt_tokens":219,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":276}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 1.946890958s diff --git a/providertests/testdata/TestOpenRouterCommon/thinking-streaming-glm-4.5.yaml b/providertests/testdata/TestOpenRouterCommon/thinking-streaming-glm-4.5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d9fafd1f1b0ceea3298fec9b333ee80f64049f36 --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/thinking-streaming-glm-4.5.yaml @@ -0,0 +1,341 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 548 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"z-ai/glm-4.5","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"}],"reasoning":{"effort":"medium"},"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-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" access","reasoning_details":[{"type":"reasoning.text","text":" access","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" requires","reasoning_details":[{"type":"reasoning.text","text":" requires","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.text","text":" so","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" all","reasoning_details":[{"type":"reasoning.text","text":" all","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.text","text":" make","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"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":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" get","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" information","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_571b606857d748ca9ee1f8a7","type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence, Italy\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":""} + + data: {"id":"gen-1758795129-AhwfWNGq5iwT9w6anFKu","provider":"Novita","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795129,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":179,"completion_tokens":85,"total_tokens":264,"cost":0.0002944,"is_byok":false,"prompt_tokens_details":{"cached_tokens":43,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001074,"upstream_inference_completions_cost":0.000187},"completion_tokens_details":{"reasoning_tokens":65,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.87795s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 881 + 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 get the weather information for Florence, Italy for you.\n","tool_calls":[{"id":"call_571b606857d748ca9ee1f8a7","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_571b606857d748ca9ee1f8a7","role":"tool"}],"model":"z-ai/glm-4.5","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"}],"reasoning":{"effort":"medium"},"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" seems","reasoning_details":[{"type":"reasoning.text","text":" seems","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very","reasoning_details":[{"type":"reasoning.text","text":" very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.text","text":" response","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.text","text":" just","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.text","text":" temperature","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear","reasoning_details":[{"type":"reasoning.text","text":" clear","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way","reasoning_details":[{"type":"reasoning.text","text":" way","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"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-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"40","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"104","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":").","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" That","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} + + data: {"id":"gen-1758795133-dadcB2owsTX1xsmG4aR8","provider":"Chutes","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758795133,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":219,"completion_tokens":68,"total_tokens":287,"cost":0.00020199,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00008979,"upstream_inference_completions_cost":0.0001122},"completion_tokens_details":{"reasoning_tokens":53,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 1.018128666s diff --git a/providertests/testdata/TestOpenRouterCommon/thinking-streaming-gpt-5.yaml b/providertests/testdata/TestOpenRouterCommon/thinking-streaming-gpt-5.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b19160f6cad4fc91a2c2117a06daf1316745b86b --- /dev/null +++ b/providertests/testdata/TestOpenRouterCommon/thinking-streaming-gpt-5.yaml @@ -0,0 +1,517 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 548 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"openai/gpt-5","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"}],"reasoning":{"effort":"medium"},"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo1RVveTc3VBRZfL_XuOdvAUJQhflTpYPAJOsyTfsM1zgokgDwhLJJr6R0WTqbj-smy8DLOqDtio0qxjWCJaL-UlBgS7vehLvLWsTRpFJMPWcycmgMNvz6oA2jQvegMopB167Atb5CyMb9upKo-53ROqJKmvt_iQaGRUso6luaGLTfNrIPZT1xBROj0fsXIvw1LBOuPcN7atA50-JlKvtnmRGQh_fDCVUCo9odB6d6MJO2qDgLGB0LQxdZB-TFVWmpasxhOtQXbRf-vzsplFxgTitoAXS6eBBqLpu-WDI-iVEXwBYlGLyhM6P5gl8-9JhQtqEs8Ais07WXVc9KfNEhWSzXEkHpQyZSQs3MWXsl7KI5aAVkuywtNrAX08fnqs0HDry0SEHhBWE9j7_WcKsHutyQqHLieQyspKxgC4YVEVdBcBZjV93lLMK-iRS48W2PeGNSu2WvHysu_M01Klsvo9woRGY_SglqBdpjAc3hPtOcFBAI7bwXL1aKd0QOVVa0yro-sYKcwOC6tpnABqXr8g6K_QB0Z0UwmLFikB7OoOPnZgYSdhEDQxNBKWdaCIBfYGu3hFbn70PdLcrxiCmlUCqPMlYKz-TZkc-7JK9SOjw1ljaa6K3BdAY6WL4K5NXCBHRviwDa0op5QPm-Xa4jiralE8U3qs8EU9fzhGprdl5Gj-c463RwTmdFSAUmB143XGPE8sXq5lIhFCpuHObP8eEBUPW4bbbVRXCbZdvProaJujAg9e8S7Go6xqmMY1e8ImxihorthfH8kLXsDT-iswnU1u0aNynCibUmXxoTMHnnsDLs0siZOAbHUcM7C897r1yB5hIdw6QoWATUwqe1iSTuloyBBw4qxgMQCDJLoKLXF1HFlLVqUFxk7R38kfEEIvuOw6KWKSj6mrg5SOnESINx44BCrO9Ivz2xTSsNnMzaifEipQ6fepDjojM7WQYEKmtinSH0tpNNUpT4s2TpQKHx5K9IyIJl1tMX5eh5kdrGyEeYZ8s_pCCU57cF6j-zHcEzQSvQlZbdta5XfyJifNze6VW0J6F3tU9GkX8T2Ga6Rd9kLlyCZIr_TQkAgsNqe-OBfzPNXdqdguQMCkj2-gIqXXbXOxDD_s0IidbvmbFt26zl_5GqN5TDomx6Kkam0rDQBPbohlSYo1LdQVdCtRPeHtxj4ayeRIUEZ9ylI9XB4f9BK-NI1tl7EZwFCS3VL80ss_tfK8s3Nvvv1Og3a0_X3qTZj65NMQ49TFn-NvHtebbVYWsI1cqsNMfPWLJLcZeldi-dwBwBgmnSLT4hlI0I0SmpMKgHoakTV0Fn-vbAy0QuAdY3Fr8XYWCw6vzaQ7HFFpmHDaeu7StdeCACKRWsUH17Vx7gjpomQuus-qMA3qw48ML7MdxbFwgS_248Ga7_F6Gez13iuo82QpRaIckNC3qC3aFIIctEGrIYzHEGD8aHMY3lPoIQLQ-PGPopUUSfV_rNCCOJRjR5ZsjSVEQ-saB3ChOsQLROMzuSTXZlkYoCSTQS3PW06WMjQmMglXFGU5i1SsOglSUjCPsQhfkc5ZqQVylkFcTcNyX4QEW3o-1rL8naoSeXRKSDzQdEK_WazvNlC9IaiWtzPnRdJ7Uh1JsRjwL_F3YMyTqzFThlKOkyQQBTOTzo-d3KlOH-STyA","id":"rs_68d5156dd18081959a9908b185bd6f8706684f585f59b4d5","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_n0vbgqTlwbwVJ0Mo3w9JPGjM","index":1,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"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-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758795116-MJM5cjSIgMSwRROAhaf1","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795116,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":66,"completion_tokens":150,"total_tokens":216,"cost":0.0015825,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000825,"upstream_inference_completions_cost":0.0015},"completion_tokens_details":{"reasoning_tokens":128,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 928.502333ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 800 + 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_n0vbgqTlwbwVJ0Mo3w9JPGjM","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_n0vbgqTlwbwVJ0Mo3w9JPGjM","role":"tool"}],"model":"openai/gpt-5","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"}],"reasoning":{"effort":"medium"},"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" already","reasoning_details":[{"type":"reasoning.summary","summary":" already","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.summary","summary":",\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" understand","reasoning_details":[{"type":"reasoning.summary","summary":" understand","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" looking","reasoning_details":[{"type":"reasoning.summary","summary":" looking","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Including","reasoning_details":[{"type":"reasoning.summary","summary":" Including","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" equivalent","reasoning_details":[{"type":"reasoning.summary","summary":" equivalent","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" brief","reasoning_details":[{"type":"reasoning.summary","summary":" brief","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.summary","summary":" (","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":")","reasoning_details":[{"type":"reasoning.summary","summary":")","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" packing","reasoning_details":[{"type":"reasoning.summary","summary":" packing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" advice","reasoning_details":[{"type":"reasoning.summary","summary":" advice","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" remind","reasoning_details":[{"type":"reasoning.summary","summary":" remind","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Checking","reasoning_details":[{"type":"reasoning.summary","summary":"**Checking","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" accuracy","reasoning_details":[{"type":"reasoning.summary","summary":" accuracy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" verify","reasoning_details":[{"type":"reasoning.summary","summary":" verify","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" retrieving","reasoning_details":[{"type":"reasoning.summary","summary":" retrieving","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" seem","reasoning_details":[{"type":"reasoning.summary","summary":" seem","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" take","reasoning_details":[{"type":"reasoning.summary","summary":" take","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" face","reasoning_details":[{"type":"reasoning.summary","summary":" face","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" value","reasoning_details":[{"type":"reasoning.summary","summary":" value","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" avoid","reasoning_details":[{"type":"reasoning.summary","summary":" avoid","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" main","reasoning_details":[{"type":"reasoning.summary","summary":" main","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" unnecessary","reasoning_details":[{"type":"reasoning.summary","summary":" unnecessary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" complications","reasoning_details":[{"type":"reasoning.summary","summary":" complications","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" conc","reasoning_details":[{"type":"reasoning.summary","summary":" conc","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ely","reasoning_details":[{"type":"reasoning.summary","summary":"ely","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"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-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABo1RV5ilpjFL7oWWYmo9t5gveEBAW2KkQcY_7fXhxgmP4NooV9Qoi6Uan98mTtYDwvQee9MAS1ltxyL9ymWH8m83Dr0MiASCM-muBzUR_I15WjxRu0juYGPLMSOecKkIasHa-o-QbW-pnbWomVLuW9LSMYlh3qiSux3Ri6pzIh0ErHjb6gY8p9vNwNw8N_hTVm0DwPIXpMDSmFmw4W4A_y5h2pCN_0YPwoqyrwaGjWnIm1mHl1K5uue5flHkQ_iPJfLcLJffktEI-5GyoRAKJ_T5jrszKxGlz2sHQXvozV8reDHENruhyMmf-Q3Vba02U_EjvKaGXbaOQgCCNYRNfNqnzjDHTGmEPONL9SJvzEU9QoLHCYoT4458nlDQcx-K9IkIx2s2Vjeku664Y8CTjmOErYdZxiAvyeTMWx9ugpR5_tPJbNIS21ePxS1rZFyem2JQxoe8Lef8sDxHE53UVXA6LeinIZcIeA1AFQYHF1QGl3Ig1lLpb-llq0VIhtTUgMy7pzLiKQwI0i1pAbArzmDRt5NngD1545jjI-VsLdDNICqiYhhsAL81jqV7SHOYu1iJWgfpIY3KF0-io0a2EFFUtiZH8zR85r6YMwwp7UOz5-QVYtQxwa06sJZdWL7Sg3QtEUb4Q2YuuYi_CP1LL5g468PIkS5lK-GZA0QizgEdoZW62yRmP-qKmTB5loFTZNRdZqlFW8pF__fdfaWA7Q85HZtiMFFq3vcRrfSBpDzv1Aaq5QhY-qNvIAGyKTezUTFXDpMMKBqspUJO8LP1tqDTq2KVre9Li-EAQPHFko6wQapGNLmhq4RgxUiBIXEjkRgha4_SVEdQx41z-LHFnI3QWyP8iLLqsg2GcF8I1IW4imElhiP5fjTSXwyXs89CQtnyE9BhtYcg9XWnZKblHbu3_PhJZB9itMgBQfGps4HI1RshIQdnID5IciNEqGzQI9zIMmFXhmKWdDJMIHjKFJoYB0R6fzfop8LtJwYb-oORcgwqK1HB_2cjfJxugTBQefEJf7WDduGdZqRrZ4zQmLaEJKffm3CjIIobsidd3YrYT6PbwhFrpIkNR5U7zLW6mziDAZ-LbY93NpEQMjSxJh8cQJViUE-2EREoajwtFwlxY9Zk-l8E7uS7TMBpgo13OoRxVTk0CT5jZMzVE60mGlPeeaHIg8JKiEMvM4KD5VfJH2-hojybqV8aw45JfYERVWqmIJERk78zpVum9TtcG5HnBJEgdfq-eofY_IrlwsZVRmnHndqiMwQ1mEl9S0TgdKR7WDHT14dg4NOWT3Bgs4K2m2kV33kqtwNLzcCeXPpMATZ6ck6zLPv91XTKrOwQ7c1GyFGd5PrWptzygxVbngNxSoZnCXBcaG5W5Mnqkplc8uVsNYa_SQNMay-KF-3rWO4x5ZEKBlvjIMFIHSQK1uqV_tX9qngW1UPrGks--tKCv2JXPxI5EK6wLtVQvJX4PPT-E6Wb1Gky_XmQ4JwUC0iafN5u7KgYxYAflV6HOmNtmkN44wt3zQ33VZyrNI8vhEp1E06bSCsH5zZCIFFVqZKEz2FRVFeT3dAxSiJJs2cBR_cdNOJ7UFlQzF0Sa4M_MMYVMltH9HQtv4zr14aqTEfH-zQPqvIVOCxzzJCTO6Vz54jIktI2rvP_iRIRrWhyqaZYwSPBVkY-VUEc-i7gsHhj8W9rtpd7pdeEp7ro1LqpHrbfF1jT-HGlj5tfNU0a09zu7O2ZTw1Uf7b6kpFGyUvHebgXUOgIxvU6v8vBIq0WaYq3hSmxoJvXKBtBpcvmMfGEq6KzkioBbQzIPXm3OA7iTOMPX3-Ywd5xnh9wOfzNxLlwUhg8sBM3Uoibz3wBkH9F8cgXI1YQJHNkkMUvjqxJKI9oAo4PQBQjD1h7kb0yBJyQo-iBXf-3Ijv0KNdm8w0Z0iSEzMGPCsQwvyrZDmNG39E2_lvJYXrA5ktRbQpqkG8pVq3U0dUKZtOJV9BPfVRYKjOQceSwdBNS2jQACecfXNFs3Rwzz0wzBuMHkPEM-xw5CcXgpabPBGZFLWVUtvyZnB077lgSTT8JrX-i04eW8ivu6bSK3xumgaA8WNWU7vcY6pv_M4hc8qzlilqudVEch5WqUcUOawyLQoQPJUlu6N989fduimwDzssl5LLRV3KfWcdRZVnTvFv4XFTz9vQ0UuUveGhXAYBL13y3qYmChaLG6-3_l71Z3qFOfH6VBhFP6FPXVBccB5aRO9rXy3MoMgdus3YQGCcup0yg4RMBV6HZOQhKFAaQF222tL_-LzawcswmY953YwhN5eJAuIwPz8JmoB24HtCjmTr2nwsKTKfA==","id":"rs_68d5157142d881908ac12df0e211d023","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"It"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"’s"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" currently"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" about"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"40"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" ("},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"104"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":")"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" in"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":","},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" Would"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" like"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" a"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" forecast"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" next"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" few"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":" days"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":"?"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"completed","logprobs":null}]} + + data: {"id":"gen-1758795120-CIGwJsN6s5vP6IsKEIzr","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758795120,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":95,"completion_tokens":225,"total_tokens":320,"cost":0.00236875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00011875,"upstream_inference_completions_cost":0.00225},"completion_tokens_details":{"reasoning_tokens":192,"image_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 945.818541ms diff --git a/providertests/testdata/TestWithUniqueToolCallIDs/stream_unique_tool_call_ids.yaml b/providertests/testdata/TestWithUniqueToolCallIDs/stream_unique_tool_call_ids.yaml index 83618145960c8b161ee478109894bd3cf033486a..76c4f781b4f96d607ce4718e1d05518ff580c97e 100644 --- a/providertests/testdata/TestWithUniqueToolCallIDs/stream_unique_tool_call_ids.yaml +++ b/providertests/testdata/TestWithUniqueToolCallIDs/stream_unique_tool_call_ids.yaml @@ -24,87 +24,93 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" add"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" perform"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" the"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiplication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" of"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" and"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" for"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":" you"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":"."},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fpv0_ec889fbb"} - data: {"id":"gen-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758792034-4DFG24Xt5SzxfAVIPAsj","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792034,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":197,"completion_tokens":55,"total_tokens":252,"cost":0.00015846,"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.0000836},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + data: {"id":"gen-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"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-1758795286-r6ddvq67TG87BrkaWVN5","provider":"Moonshot AI","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795286,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":154,"completion_tokens":55,"total_tokens":209,"cost":0.0004598,"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.000275},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} data: [DONE] @@ -113,15 +119,15 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.0912445s + duration: 1.430772208s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1432 + content_length: 1307 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":"test-5127e4bb-57fe-4257-ba4e-c9bf89cf3fa1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"test-970b5c26-bef5-4285-9a05-4c9b83741a5d","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"test-5127e4bb-57fe-4257-ba4e-c9bf89cf3fa1","role":"tool"},{"content":"6","tool_call_id":"test-970b5c26-bef5-4285-9a05-4c9b83741a5d","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 perform both addition and multiplication of 2 and 3 for you.","tool_calls":[{"id":"test-3","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"test-4","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"test-3","role":"tool"},{"content":"6","tool_call_id":"test-4","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 @@ -137,65 +143,73 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"The"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"Here"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" both"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} + + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" calculations"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" results"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" are"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" Addition"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"**:"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" +"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"5"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"-"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" **"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"Multi"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"plication"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":":"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"**:"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"2"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" ×"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"3"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" ="},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":" "},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":"6"},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":null} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]} - data: {"id":"gen-1758792037-X8yvMJtJyFuHSepPJpsI","provider":"BaseTen","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758792037,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":390,"completion_tokens":29,"total_tokens":419,"cost":0.0003065,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000234,"upstream_inference_completions_cost":0.0000725},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} + data: {"id":"gen-1758795287-sW0GKhrmWZLZQRXXK0QN","provider":"Chutes","model":"moonshotai/kimi-k2-0905","object":"chat.completion.chunk","created":1758795287,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":284,"completion_tokens":32,"total_tokens":316,"cost":0.00015656,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00010792,"upstream_inference_completions_cost":0.00004864},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}} data: [DONE] @@ -204,4 +218,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 662.265667ms + duration: 1.287678459s diff --git a/providertests/testdata/TestWithUniqueToolCallIDs/unique_tool_call_ids.yaml b/providertests/testdata/TestWithUniqueToolCallIDs/unique_tool_call_ids.yaml index 308aed9ce5cd98eb7e3d730f6a5f7d659c41eb2b..26b43090fbdb17ddf0bb723844118eb30b0534a2 100644 --- a/providertests/testdata/TestWithUniqueToolCallIDs/unique_tool_call_ids.yaml +++ b/providertests/testdata/TestWithUniqueToolCallIDs/unique_tool_call_ids.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\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n\n \n{\"id\":\"gen-1758792026-4PDXsLSjIK2zFVEr7CYE\",\"provider\":\"SiliconFlow\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758792026,\"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 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\":\"\",\"usage\":{\"prompt_tokens\":220,\"completion_tokens\":59,\"total_tokens\":279,\"cost\":0.00026271,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001276,\"upstream_inference_completions_cost\":0.00013511},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + body: "\n \n\n \n\n \n\n \n{\"id\":\"gen-1758795282-ZfaWssiVfX6IlzZpg8Yl\",\"provider\":\"Fireworks\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758795282,\"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.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\":214,\"completion_tokens\":41,\"total_tokens\":255,\"cost\":0.0002309,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.0001284,\"upstream_inference_completions_cost\":0.0001025},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.986534959s + duration: 1.700942625s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1423 + content_length: 1192 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","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 for you.","tool_calls":[{"id":"test-d346f60a-252a-4ffa-8228-8cae83ee6b1f","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"test-164932d8-c1cb-44d7-94b9-05616b31bd74","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"test-d346f60a-252a-4ffa-8228-8cae83ee6b1f","role":"tool"},{"content":"6","tool_call_id":"test-164932d8-c1cb-44d7-94b9-05616b31bd74","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. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"test-1","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"test-2","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"test-1","role":"tool"},{"content":"6","tool_call_id":"test-2","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 @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: "\n \n\n \n\n \n\n \n{\"id\":\"gen-1758792032-yD4OKp7VjJKd81wvmOej\",\"provider\":\"Chutes\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758792033,\"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\":376,\"completion_tokens\":29,\"total_tokens\":405,\"cost\":0.00018696,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.00014288,\"upstream_inference_completions_cost\":0.00004408},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" + body: "\n \n\n \n{\"id\":\"gen-1758795284-yAyyi3hio0mN4h4OlsWF\",\"provider\":\"DeepInfra\",\"model\":\"moonshotai/kimi-k2-0905\",\"object\":\"chat.completion\",\"created\":1758795284,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Adding 2 and 3 gives 5, and multiplying 2 and 3 gives 6.\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":270,\"completion_tokens\":21,\"total_tokens\":291,\"cost\":0.000177,\"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.000042},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}" headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.327371916s + duration: 763.1885ms